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