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
|
|
|
|
2014-11-30 11:41:20 -08:00
|
|
|
version = "7.0";
|
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";
|
2014-11-30 11:41:20 -08:00
|
|
|
sha256 = "0qg07f035agwcz9m0p3kgdjs18xpl3h00rv28aqsfdyz1wm1m76x";
|
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
|
2013-07-27 11:51:54 -07:00
|
|
|
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;
|
2009-05-24 05:20:08 -07:00
|
|
|
};
|
2009-05-23 15:54:11 -07:00
|
|
|
}
|