Skip to content

Commit

Permalink
python.pkgs.setuptools: upgrade to 36.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FRidh committed Sep 7, 2017
1 parent 52932fa commit a26ae76
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions pkgs/development/python-modules/bootstrapped-pip/default.nix
Expand Up @@ -9,16 +9,16 @@ let
};
setuptools_source = fetchPypi {
pname = "setuptools";
version = "36.0.1";
version = "36.4.0";
format = "wheel";
sha256 = "f2900e560efc479938a219433c48f15a4ff4ecfe575a65de385eeb44f2425587";
sha256 = "4d54c0bfee283e78609169213f9c075827d5837086f58b588b417b093c23464b";
};

# TODO: Shouldn't be necessary anymore for pip > 9.0.1!
# https://github.com/NixOS/nixpkgs/issues/26392
# https://github.com/pypa/setuptools/issues/885
pkg_resources = fetchurl {
url = https://raw.githubusercontent.com/pypa/setuptools/v36.0.1/pkg_resources/__init__.py;
url = "https://raw.githubusercontent.com/pypa/setuptools/v36.4.0/pkg_resources/__init__.py";
sha256 = "1wdnq3mammk75mifkdmmjx7yhnpydvnvi804na8ym4mj934l2jkv";
};

Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/setuptools/default.nix
Expand Up @@ -8,13 +8,13 @@
# Should use buildPythonPackage here somehow
stdenv.mkDerivation rec {
pname = "setuptools";
version = "36.2.7";
version = "36.4.0";
name = "${python.libPrefix}-${pname}-${version}";

src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "b0fe5d432d922df595e918577c51458d63f245115d141b309ac32ecfca329df5";
sha256 = "2758b0270fe8ceec42f336ee5b411e60dc8579febc27bb3ba9b794dc7f0239ae";
};

buildInputs = [ python wrapPython unzip ];
Expand Down

0 comments on commit a26ae76

Please sign in to comment.