2016-01-23 12:09:44 +01:00
|
|
|
{ stdenv, lib, fetchurl, python, wrapPython }:
|
2011-03-29 17:02:15 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-05-31 03:09:44 +02:00
|
|
|
shortName = "setuptools-${version}";
|
2013-07-27 20:51:54 +02:00
|
|
|
name = "${python.executable}-${shortName}";
|
2012-12-03 05:20:04 +01:00
|
|
|
|
2016-01-23 12:09:44 +01:00
|
|
|
version = "19.4"; # 18.4 and up breaks python34Packages.characteristic and many others
|
2009-05-24 00:54:11 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-04-26 14:38:03 +02:00
|
|
|
url = "mirror://pypi/s/setuptools/${shortName}.tar.gz";
|
2016-01-23 12:09:44 +01:00
|
|
|
sha256 = "214bf29933f47cf25e6faa569f710731728a07a19cae91ea64f826051f68a8cf";
|
2009-05-24 00:54:11 +02:00
|
|
|
};
|
|
|
|
|
2015-11-18 11:46:34 +01:00
|
|
|
buildInputs = [ python wrapPython ];
|
|
|
|
doCheck = false; # requires pytest
|
|
|
|
installPhase = ''
|
|
|
|
dst=$out/${python.sitePackages}
|
2011-03-29 17:02:15 +02:00
|
|
|
mkdir -p $dst
|
2015-07-15 19:40:56 +02:00
|
|
|
export PYTHONPATH="$dst:$PYTHONPATH"
|
2015-11-18 11:46:34 +01:00
|
|
|
${python.interpreter} setup.py install --prefix=$out
|
2011-03-29 17:02:15 +02:00
|
|
|
wrapPythonPrograms
|
2013-07-27 20:51:54 +02:00
|
|
|
'';
|
2009-05-24 00:54:11 +02:00
|
|
|
|
2016-07-02 23:43:51 +02:00
|
|
|
pythonPath = [];
|
|
|
|
|
2013-07-31 13:32:25 +02:00
|
|
|
meta = with stdenv.lib; {
|
2009-05-24 00:54:11 +02:00
|
|
|
description = "Utilities to facilitate the installation of Python packages";
|
|
|
|
homepage = http://pypi.python.org/pypi/setuptools;
|
2016-01-23 12:09:44 +01:00
|
|
|
license = with lib.licenses; [ psfl zpt20 ];
|
2013-07-31 13:32:25 +02:00
|
|
|
platforms = platforms.all;
|
2015-08-27 18:45:48 +02:00
|
|
|
};
|
2009-05-24 00:54:11 +02:00
|
|
|
}
|