2011-03-29 08:02:15 -07:00
|
|
|
{ stdenv, fetchurl, python, wrapPython }:
|
|
|
|
|
|
|
|
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
|
|
|
|
2013-07-27 11:51:54 -07:00
|
|
|
version = "0.9.8";
|
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";
|
2013-07-27 11:51:54 -07:00
|
|
|
sha256 = "037b8x3fdhx8s6xafqndi3yr8x2vr42n1kzs7jxk6j9s9fd65gs2";
|
2009-05-23 15:54:11 -07:00
|
|
|
};
|
|
|
|
|
2013-07-27 11:51:54 -07:00
|
|
|
patches = [
|
|
|
|
# https://bitbucket.org/pypa/setuptools/issue/55/1-failure-lc_all-c-python33m-setuppy-test
|
|
|
|
./distribute-skip-sdist_with_utf8_encoded_filename.patch
|
|
|
|
];
|
|
|
|
|
2011-03-29 08:02:15 -07:00
|
|
|
buildInputs = [ python wrapPython ];
|
2009-05-23 15:54:11 -07:00
|
|
|
|
2013-07-27 11:51:54 -07:00
|
|
|
buildPhase = "${python}/bin/${python.executable} setup.py build --build-base $out";
|
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"
|
|
|
|
${python}/bin/${python.executable} setup.py install --prefix=$out
|
2011-03-29 08:02:15 -07:00
|
|
|
wrapPythonPrograms
|
|
|
|
'';
|
2009-05-23 15:54:11 -07:00
|
|
|
|
2013-08-23 03:41:19 -07:00
|
|
|
# tests fail on darwin, see http://bitbucket.org/pypa/setuptools/issue/55/1-failure-lc_all-c-python33m-setuppy-test
|
2013-08-02 17:42:11 -07:00
|
|
|
doCheck = (!stdenv.isDarwin);
|
|
|
|
|
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;
|
|
|
|
licenses = [ "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
|
|
|
}
|