mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
python.pkgs.setuptools: 36.4.0/36.6.0 -> 36.7.1
This commit is contained in:
parent
80329e7123
commit
24b7b3e49f
2 changed files with 4 additions and 4 deletions
|
@ -9,9 +9,9 @@ let
|
|||
};
|
||||
setuptools_source = fetchPypi {
|
||||
pname = "setuptools";
|
||||
version = "36.4.0";
|
||||
version = "36.7.1";
|
||||
format = "wheel";
|
||||
sha256 = "4d54c0bfee283e78609169213f9c075827d5837086f58b588b417b093c23464b";
|
||||
sha256 = "eaacfa35eb11199d0b017df416421781a75209817bff3f94820556e36c49bd77";
|
||||
};
|
||||
|
||||
# TODO: Shouldn't be necessary anymore for pip > 9.0.1!
|
||||
|
|
|
@ -8,13 +8,13 @@
|
|||
# Should use buildPythonPackage here somehow
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "setuptools";
|
||||
version = "36.6.0";
|
||||
version = "36.7.1";
|
||||
name = "${python.libPrefix}-${pname}-${version}";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
extension = "zip";
|
||||
sha256 = "62074589522a798da243f47348f38020d55b6c945652e2f2c09d3a96299812b7";
|
||||
sha256 = "543becf5d33d8989dc5222403997488e9dc3872bdecdabb0f57184ca253ec1e8";
|
||||
};
|
||||
|
||||
buildInputs = [ python wrapPython unzip ];
|
||||
|
|
Loading…
Reference in a new issue