python.pkgs.setuptools: 36.7.1 -> 38.2.3

This commit is contained in:
Spencer Baugh 2017-12-01 20:46:51 +00:00 committed by Frederik Rietdijk
parent 06ee1e3850
commit 70c1899768
2 changed files with 4 additions and 4 deletions

View File

@ -9,9 +9,9 @@ let
};
setuptools_source = fetchPypi {
pname = "setuptools";
version = "36.7.1";
version = "38.2.3";
format = "wheel";
sha256 = "eaacfa35eb11199d0b017df416421781a75209817bff3f94820556e36c49bd77";
sha256 = "0c4j3jiiwc0h1bdv4xklinp90spgvgiv5fsxp119hif9934nfxfs";
};
# TODO: Shouldn't be necessary anymore for pip > 9.0.1!

View File

@ -8,13 +8,13 @@
# Should use buildPythonPackage here somehow
stdenv.mkDerivation rec {
pname = "setuptools";
version = "36.7.1";
version = "38.2.3";
name = "${python.libPrefix}-${pname}-${version}";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "543becf5d33d8989dc5222403997488e9dc3872bdecdabb0f57184ca253ec1e8";
sha256 = "124jlg72bbk2xxv5wqbwcl4h5cdslslzk92rxjxiplg79l499hv3";
};
buildInputs = [ python wrapPython unzip ];