2015-11-18 10:46:34 +00:00
|
|
|
{ stdenv, fetchurl, python, wrapPython }:
|
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
|
|
|
|
2015-10-27 18:43:53 +00:00
|
|
|
version = "18.2"; # 18.4 breaks python34Packages.characteristic and many others
|
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";
|
2015-10-27 18:43:53 +00:00
|
|
|
sha256 = "07avbdc26yl2a46s76fc7m4vg611g8sh39l26x9dr9byya6sb509";
|
2009-05-23 22:54:11 +00:00
|
|
|
};
|
|
|
|
|
2015-11-18 10:46:34 +00:00
|
|
|
buildInputs = [ python wrapPython ];
|
|
|
|
doCheck = false; # requires pytest
|
|
|
|
installPhase = ''
|
|
|
|
dst=$out/${python.sitePackages}
|
2011-03-29 15:02:15 +00:00
|
|
|
mkdir -p $dst
|
2015-07-15 17:40:56 +00:00
|
|
|
export PYTHONPATH="$dst:$PYTHONPATH"
|
2015-11-18 10:46:34 +00:00
|
|
|
${python.interpreter} setup.py install --prefix=$out
|
2011-03-29 15:02:15 +00:00
|
|
|
wrapPythonPrograms
|
2013-07-27 18:51:54 +00:00
|
|
|
'';
|
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;
|
2015-08-27 16:45:48 +00:00
|
|
|
};
|
2009-05-23 22:54:11 +00:00
|
|
|
}
|