2011-03-29 17:02:15 +02:00
|
|
|
{ stdenv, fetchurl, python, wrapPython }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-05-31 03:09:44 +02:00
|
|
|
shortName = "setuptools-${version}";
|
2013-07-27 20:51:54 +02:00
|
|
|
name = "${python.executable}-${shortName}";
|
2012-12-03 05:20:04 +01:00
|
|
|
|
2013-12-29 19:15:22 +01:00
|
|
|
version = "2.0.2";
|
2009-05-24 00:54:11 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-05-31 03:09:44 +02:00
|
|
|
url = "http://pypi.python.org/packages/source/s/setuptools/${shortName}.tar.gz";
|
2013-12-29 19:15:22 +01:00
|
|
|
sha256 = "09nv5x45y8fgc0kjmmw4gig3hr0is9xlc5rq053vnbmkxr5q5xmi";
|
2009-05-24 00:54:11 +02:00
|
|
|
};
|
|
|
|
|
2011-03-29 17:02:15 +02:00
|
|
|
buildInputs = [ python wrapPython ];
|
2009-05-24 00:54:11 +02:00
|
|
|
|
2013-07-27 20:51:54 +02:00
|
|
|
buildPhase = "${python}/bin/${python.executable} setup.py build --build-base $out";
|
2009-05-24 00:54:11 +02:00
|
|
|
|
2011-03-29 17:02:15 +02:00
|
|
|
installPhase =
|
|
|
|
''
|
|
|
|
dst=$out/lib/${python.libPrefix}/site-packages
|
|
|
|
mkdir -p $dst
|
2013-07-27 20:51:54 +02:00
|
|
|
PYTHONPATH="$dst:$PYTHONPATH"
|
|
|
|
${python}/bin/${python.executable} setup.py install --prefix=$out
|
2011-03-29 17:02:15 +02:00
|
|
|
wrapPythonPrograms
|
|
|
|
'';
|
2009-05-24 00:54:11 +02:00
|
|
|
|
2014-01-06 14:12:37 +01:00
|
|
|
doCheck = stdenv.system != "x86_64-darwin";
|
2013-08-03 02:42:11 +02:00
|
|
|
|
2013-07-27 20:51:54 +02:00
|
|
|
checkPhase = ''
|
|
|
|
${python}/bin/${python.executable} setup.py test
|
|
|
|
'';
|
2009-05-24 00:54:11 +02:00
|
|
|
|
2013-07-31 13:32:25 +02:00
|
|
|
meta = with stdenv.lib; {
|
2009-05-24 00:54:11 +02:00
|
|
|
description = "Utilities to facilitate the installation of Python packages";
|
|
|
|
homepage = http://pypi.python.org/pypi/setuptools;
|
|
|
|
licenses = [ "PSF" "ZPL" ];
|
2013-07-31 13:32:25 +02:00
|
|
|
platforms = platforms.all;
|
2009-05-24 14:20:08 +02:00
|
|
|
};
|
2009-05-24 00:54:11 +02:00
|
|
|
}
|