2017-06-01 17:21:23 +01:00
|
|
|
{ stdenv
|
|
|
|
, fetchPypi
|
|
|
|
, python
|
|
|
|
, wrapPython
|
|
|
|
, unzip
|
|
|
|
}:
|
2011-03-29 16:02:15 +01:00
|
|
|
|
2017-06-01 17:21:23 +01:00
|
|
|
# Should use buildPythonPackage here somehow
|
2011-03-29 16:02:15 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2016-11-14 20:58:43 +00:00
|
|
|
pname = "setuptools";
|
2017-09-07 14:04:47 +01:00
|
|
|
version = "36.4.0";
|
2017-06-01 17:21:23 +01:00
|
|
|
name = "${python.libPrefix}-${pname}-${version}";
|
2012-12-03 04:20:04 +00:00
|
|
|
|
2017-06-01 17:21:23 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
extension = "zip";
|
2017-09-07 14:04:47 +01:00
|
|
|
sha256 = "2758b0270fe8ceec42f336ee5b411e60dc8579febc27bb3ba9b794dc7f0239ae";
|
2009-05-23 23:54:11 +01:00
|
|
|
};
|
|
|
|
|
2017-06-01 17:21:23 +01:00
|
|
|
buildInputs = [ python wrapPython unzip ];
|
2015-11-18 10:46:34 +00:00
|
|
|
doCheck = false; # requires pytest
|
|
|
|
installPhase = ''
|
|
|
|
dst=$out/${python.sitePackages}
|
2011-03-29 16:02:15 +01:00
|
|
|
mkdir -p $dst
|
2015-07-15 18:40:56 +01:00
|
|
|
export PYTHONPATH="$dst:$PYTHONPATH"
|
2015-11-18 10:46:34 +00:00
|
|
|
${python.interpreter} setup.py install --prefix=$out
|
2011-03-29 16:02:15 +01:00
|
|
|
wrapPythonPrograms
|
2013-07-27 19:51:54 +01:00
|
|
|
'';
|
2009-05-23 23:54:11 +01:00
|
|
|
|
2016-07-02 22:43:51 +01:00
|
|
|
pythonPath = [];
|
|
|
|
|
2013-07-31 12:32:25 +01:00
|
|
|
meta = with stdenv.lib; {
|
2009-05-23 23:54:11 +01:00
|
|
|
description = "Utilities to facilitate the installation of Python packages";
|
|
|
|
homepage = http://pypi.python.org/pypi/setuptools;
|
2017-08-06 12:49:18 +01:00
|
|
|
license = with licenses; [ psfl zpl20 ];
|
2013-07-31 12:32:25 +01:00
|
|
|
platforms = platforms.all;
|
2016-08-02 11:17:37 +01:00
|
|
|
priority = 10;
|
2015-08-27 17:45:48 +01:00
|
|
|
};
|
2009-05-23 23:54:11 +01:00
|
|
|
}
|