2014-01-06 22:34:01 +00:00
|
|
|
{ stdenv, fetchurl, python, wrapPython, distutils-cfg }:
|
2011-03-29 15:02:15 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-05-31 01:09:44 +00:00
|
|
|
shortName = "setuptools-${version}";
|
2013-07-27 18:51:54 +00:00
|
|
|
name = "${python.executable}-${shortName}";
|
2012-12-03 04:20:04 +00:00
|
|
|
|
2014-01-10 20:50:03 +00:00
|
|
|
version = "2.1";
|
2009-05-23 22:54:11 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-05-31 01:09:44 +00:00
|
|
|
url = "http://pypi.python.org/packages/source/s/setuptools/${shortName}.tar.gz";
|
2014-01-10 20:50:03 +00:00
|
|
|
sha256 = "1m8qjvj5bfbphdags5s6pgmvk3xnw509lgdlq9whkq5a9mgxf8m7";
|
2009-05-23 22:54:11 +00: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 22:54:11 +00:00
|
|
|
|
2011-03-29 15:02:15 +00:00
|
|
|
installPhase =
|
|
|
|
''
|
|
|
|
dst=$out/lib/${python.libPrefix}/site-packages
|
|
|
|
mkdir -p $dst
|
2013-07-27 18:51:54 +00:00
|
|
|
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 15:02:15 +00:00
|
|
|
wrapPythonPrograms
|
|
|
|
'';
|
2009-05-23 22:54:11 +00:00
|
|
|
|
2014-01-06 13:12:37 +00:00
|
|
|
doCheck = stdenv.system != "x86_64-darwin";
|
2013-08-03 00:42:11 +00:00
|
|
|
|
2013-07-27 18:51:54 +00:00
|
|
|
checkPhase = ''
|
|
|
|
${python}/bin/${python.executable} setup.py test
|
|
|
|
'';
|
2009-05-23 22:54:11 +00:00
|
|
|
|
2013-07-31 11:32:25 +00:00
|
|
|
meta = with stdenv.lib; {
|
2009-05-23 22:54:11 +00: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 11:32:25 +00:00
|
|
|
platforms = platforms.all;
|
2009-05-24 12:20:08 +00:00
|
|
|
};
|
2009-05-23 22:54:11 +00:00
|
|
|
}
|