2014-01-06 22:34:01 +00:00
|
|
|
{ stdenv, fetchurl, python, wrapPython, distutils-cfg }:
|
2011-03-29 16:02:15 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-05-31 02:09:44 +01:00
|
|
|
shortName = "setuptools-${version}";
|
2013-07-27 19:51:54 +01:00
|
|
|
name = "${python.executable}-${shortName}";
|
2012-12-03 04:20:04 +00:00
|
|
|
|
2015-10-27 18:43:53 +00:00
|
|
|
version = "18.2"; # 18.4 breaks python34Packages.characteristic and many others
|
2009-05-23 23:54:11 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-05-31 02:09:44 +01:00
|
|
|
url = "http://pypi.python.org/packages/source/s/setuptools/${shortName}.tar.gz";
|
2015-10-27 18:43:53 +00:00
|
|
|
sha256 = "07avbdc26yl2a46s76fc7m4vg611g8sh39l26x9dr9byya6sb509";
|
2009-05-23 23:54:11 +01:00
|
|
|
};
|
|
|
|
|
2014-01-06 22:34:01 +00:00
|
|
|
buildInputs = [ python wrapPython distutils-cfg ];
|
|
|
|
|
|
|
|
buildPhase = "${python}/bin/${python.executable} setup.py build";
|
2009-05-23 23:54:11 +01:00
|
|
|
|
2011-03-29 16:02:15 +01:00
|
|
|
installPhase =
|
|
|
|
''
|
|
|
|
dst=$out/lib/${python.libPrefix}/site-packages
|
|
|
|
mkdir -p $dst
|
2015-07-15 18:40:56 +01:00
|
|
|
export PYTHONPATH="$dst:$PYTHONPATH"
|
2014-03-07 13:33:59 +00:00
|
|
|
${python}/bin/${python.executable} setup.py install --prefix=$out --install-lib=$out/lib/${python.libPrefix}/site-packages
|
2011-03-29 16:02:15 +01:00
|
|
|
wrapPythonPrograms
|
|
|
|
'';
|
2009-05-23 23:54:11 +01:00
|
|
|
|
2014-09-18 13:03:16 +01:00
|
|
|
doCheck = false; # requires pytest
|
2013-08-03 01:42:11 +01:00
|
|
|
|
2013-07-27 19:51:54 +01:00
|
|
|
checkPhase = ''
|
|
|
|
${python}/bin/${python.executable} setup.py test
|
|
|
|
'';
|
2009-05-23 23:54:11 +01:00
|
|
|
|
2013-07-31 12:32:25 +01:00
|
|
|
meta = with stdenv.lib; {
|
2009-05-23 23:54:11 +01:00
|
|
|
description = "Utilities to facilitate the installation of Python packages";
|
|
|
|
homepage = http://pypi.python.org/pypi/setuptools;
|
2014-01-24 15:27:36 +00:00
|
|
|
license = [ "PSF" "ZPL" ];
|
2013-07-31 12:32:25 +01:00
|
|
|
platforms = platforms.all;
|
2015-08-27 17:45:48 +01:00
|
|
|
};
|
2009-05-23 23:54:11 +01:00
|
|
|
}
|