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