2017-06-01 18:21:23 +02:00
|
|
|
{ stdenv
|
|
|
|
, fetchPypi
|
|
|
|
, python
|
|
|
|
, wrapPython
|
|
|
|
, unzip
|
|
|
|
}:
|
2011-03-29 17:02:15 +02:00
|
|
|
|
2017-06-01 18:21:23 +02:00
|
|
|
# Should use buildPythonPackage here somehow
|
2011-03-29 17:02:15 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2016-11-14 21:58:43 +01:00
|
|
|
pname = "setuptools";
|
2017-06-01 18:21:23 +02:00
|
|
|
version = "36.0.1";
|
|
|
|
name = "${python.libPrefix}-${pname}-${version}";
|
2012-12-03 05:20:04 +01:00
|
|
|
|
2017-06-01 18:21:23 +02:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
extension = "zip";
|
|
|
|
sha256 = "e17c4687fddd6d70a6604ac0ad25e33324cec71b5137267dd5c45e103c4b288a";
|
2009-05-24 00:54:11 +02:00
|
|
|
};
|
|
|
|
|
2017-06-01 18:21:23 +02:00
|
|
|
buildInputs = [ python wrapPython unzip ];
|
2015-11-18 11:46:34 +01:00
|
|
|
doCheck = false; # requires pytest
|
|
|
|
installPhase = ''
|
|
|
|
dst=$out/${python.sitePackages}
|
2011-03-29 17:02:15 +02:00
|
|
|
mkdir -p $dst
|
2015-07-15 19:40:56 +02:00
|
|
|
export PYTHONPATH="$dst:$PYTHONPATH"
|
2015-11-18 11:46:34 +01:00
|
|
|
${python.interpreter} setup.py install --prefix=$out
|
2011-03-29 17:02:15 +02:00
|
|
|
wrapPythonPrograms
|
2013-07-27 20:51:54 +02:00
|
|
|
'';
|
2009-05-24 00:54:11 +02:00
|
|
|
|
2016-07-02 23:43:51 +02:00
|
|
|
pythonPath = [];
|
|
|
|
|
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;
|
2017-08-06 13:49:18 +02:00
|
|
|
license = with licenses; [ psfl zpl20 ];
|
2013-07-31 13:32:25 +02:00
|
|
|
platforms = platforms.all;
|
2016-08-02 12:17:37 +02:00
|
|
|
priority = 10;
|
2015-08-27 18:45:48 +02:00
|
|
|
};
|
2009-05-24 00:54:11 +02:00
|
|
|
}
|