Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 974d291dea06
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: dd67766f5434
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Nov 2, 2020

  1. python37Packages.sshtunnel: 0.1.5 -> 0.2.1

    r-ryantm authored and Jonathan Ringer committed Nov 2, 2020

    Unverified

    The signing certificate or its chain could not be verified.
    Copy the full SHA
    d3a12ae View commit details
  2. azure-cli: pin sshtunnel

    Jonathan Ringer committed Nov 2, 2020
    Copy the full SHA
    dd67766 View commit details
Showing with 13 additions and 2 deletions.
  1. +2 −2 pkgs/development/python-modules/sshtunnel/default.nix
  2. +11 −0 pkgs/tools/admin/azure-cli/python-packages.nix
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/sshtunnel/default.nix
Original file line number Diff line number Diff line change
@@ -5,12 +5,12 @@
}:

buildPythonPackage rec {
version = "0.1.5";
version = "0.2.1";
pname = "sshtunnel";

src = fetchPypi {
inherit pname version;
sha256 = "0jcjppp6mdfsqrbfc3ddfxg1ybgvkjv7ri7azwv3j778m36zs4y8";
sha256 = "ce28bf9abe6c6b00c5d10343a68c1325f8409ebfb9bf1c1d863a31afa3983cd7";
};

propagatedBuildInputs = [ paramiko ];
11 changes: 11 additions & 0 deletions pkgs/tools/admin/azure-cli/python-packages.nix
Original file line number Diff line number Diff line change
@@ -411,6 +411,17 @@ let
};
});

sshtunnel = super.sshtunnel.overridePythonAttrs(oldAttrs: rec {
name = "sshtunnel-${version}";
version = "0.1.5";

src = super.fetchPypi {
inherit (oldAttrs) pname;
inherit version;
sha256 = "0jcjppp6mdfsqrbfc3ddfxg1ybgvkjv7ri7azwv3j778m36zs4y8";
};
});

websocket_client = super.websocket_client.overridePythonAttrs(oldAttrs: rec {
version = "0.56.0";