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: 1b5c537f45bf
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 445c68a1f745
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Oct 18, 2019

  1. Copy the full SHA
    6a9de0e View commit details
  2. python.pkgs.pip: 19.3 -> 19.3.1

    FRidh committed Oct 18, 2019
    Copy the full SHA
    445c68a View commit details
Showing with 4 additions and 4 deletions.
  1. +2 −2 pkgs/development/python-modules/bootstrapped-pip/default.nix
  2. +2 −2 pkgs/development/python-modules/pip/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/bootstrapped-pip/default.nix
Original file line number Diff line number Diff line change
@@ -20,13 +20,13 @@ let

in stdenv.mkDerivation rec {
pname = "pip";
version = "19.3";
version = "19.3.1";
name = "${python.libPrefix}-bootstrapped-${pname}-${version}";

src = fetchPypi {
inherit pname version;
format = "wheel";
sha256 = "e100a7eccf085f0720b4478d3bb838e1c179b1e128ec01c0403f84e86e0e2dfb";
sha256 = "6917c65fc3769ecdc61405d3dfd97afdedd75808d200b2838d7d961cebc0c2c7";
};

dontUseSetuptoolsBuild = true;
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/pip/default.nix
Original file line number Diff line number Diff line change
@@ -14,12 +14,12 @@

buildPythonPackage rec {
pname = "pip";
version = "19.3";
version = "19.3.1";
format = "other";

src = fetchPypi {
inherit pname version;
sha256 = "324d234b8f6124846b4e390df255cacbe09ce22791c3b714aa1ea6e44a4f2861";
sha256 = "21207d76c1031e517668898a6b46a9fb1501c7a4710ef5dfd6a40ad9e6757ea7";
};

nativeBuildInputs = [ bootstrapped-pip ];