pythonPackages.setuptools: 19.4 -> 26.1.1

This commit is contained in:
Frederik Rietdijk
2016-09-01 15:03:25 +02:00
parent 4f6b6f1472
commit 9a851907a8
2 changed files with 5 additions and 5 deletions

View File

@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
shortName = "setuptools-${version}";
name = "${python.executable}-${shortName}";
name = "${python.libPrefix}-${shortName}";
version = "19.4"; # 18.4 and up breaks python34Packages.characteristic and many others
version = "26.1.1"; # 18.4 and up breaks python34Packages.characteristic and many others
src = fetchurl {
url = "mirror://pypi/s/setuptools/${shortName}.tar.gz";
sha256 = "214bf29933f47cf25e6faa569f710731728a07a19cae91ea64f826051f68a8cf";
sha256 = "475ce28993d7cb75335942525b9fac79f7431a7f6e8a0079c0f2680641379481";
};
buildInputs = [ python wrapPython ];