2017-06-01 18:21:23 +02:00
|
|
|
{ stdenv
|
2019-07-17 20:36:47 +02:00
|
|
|
, buildPythonPackage
|
2017-06-01 18:21:23 +02:00
|
|
|
, fetchPypi
|
|
|
|
, python
|
|
|
|
, wrapPython
|
|
|
|
, unzip
|
2019-07-17 20:36:47 +02:00
|
|
|
, callPackage
|
|
|
|
, bootstrapped-pip
|
2017-06-01 18:21:23 +02:00
|
|
|
}:
|
2011-03-29 15:02:15 +00:00
|
|
|
|
2019-07-17 20:36:47 +02:00
|
|
|
buildPythonPackage rec {
|
2016-11-14 21:58:43 +01:00
|
|
|
pname = "setuptools";
|
2019-08-31 15:24:08 +02:00
|
|
|
version = "41.2.0";
|
2019-07-17 20:36:47 +02:00
|
|
|
format = "other";
|
2012-12-03 05:20:04 +01:00
|
|
|
|
2017-06-01 18:21:23 +02:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
extension = "zip";
|
2019-08-31 15:24:08 +02:00
|
|
|
sha256 = "66b86bbae7cc7ac2e867f52dc08a6bd064d938bac59dfec71b9b565dd36d6012";
|
2009-05-23 22:54:11 +00:00
|
|
|
};
|
|
|
|
|
2019-07-17 20:36:47 +02:00
|
|
|
# There is nothing to build
|
|
|
|
dontBuild = true;
|
|
|
|
|
|
|
|
nativeBuildInputs = [ bootstrapped-pip ];
|
|
|
|
|
2015-11-18 11:46:34 +01:00
|
|
|
installPhase = ''
|
|
|
|
dst=$out/${python.sitePackages}
|
2011-03-29 15:02:15 +00:00
|
|
|
mkdir -p $dst
|
2015-07-15 19:40:56 +02:00
|
|
|
export PYTHONPATH="$dst:$PYTHONPATH"
|
2019-01-02 20:09:44 +01:00
|
|
|
${python.pythonForBuild.interpreter} setup.py install --prefix=$out
|
2011-03-29 15:02:15 +00:00
|
|
|
wrapPythonPrograms
|
2013-07-27 20:51:54 +02:00
|
|
|
'';
|
2009-05-23 22:54:11 +00:00
|
|
|
|
2019-07-17 20:36:47 +02:00
|
|
|
# Adds setuptools to nativeBuildInputs causing infinite recursion.
|
|
|
|
catchConflicts = false;
|
2019-01-02 20:09:44 +01:00
|
|
|
|
2019-07-17 20:36:47 +02:00
|
|
|
# Requires pytest, causing infinite recursion.
|
|
|
|
doCheck = false;
|
2019-01-02 20:09:44 +01:00
|
|
|
|
2013-07-31 13:32:25 +02:00
|
|
|
meta = with stdenv.lib; {
|
2009-05-23 22:54:11 +00:00
|
|
|
description = "Utilities to facilitate the installation of Python packages";
|
2017-11-10 22:13:27 +01:00
|
|
|
homepage = https://pypi.python.org/pypi/setuptools;
|
2017-08-06 13:49:18 +02:00
|
|
|
license = with licenses; [ psfl zpl20 ];
|
2018-06-12 20:56:11 +02:00
|
|
|
platforms = python.meta.platforms;
|
2016-08-02 12:17:37 +02:00
|
|
|
priority = 10;
|
2015-08-27 18:45:48 +02:00
|
|
|
};
|
2009-05-23 22:54:11 +00:00
|
|
|
}
|