2017-06-01 17:21:23 +01:00
|
|
|
{ stdenv
|
2019-07-17 19:36:47 +01:00
|
|
|
, buildPythonPackage
|
2017-06-01 17:21:23 +01:00
|
|
|
, fetchPypi
|
|
|
|
, python
|
|
|
|
, wrapPython
|
|
|
|
, unzip
|
2019-07-17 19:36:47 +01:00
|
|
|
, callPackage
|
|
|
|
, bootstrapped-pip
|
2019-10-14 01:20:04 +01:00
|
|
|
, lib
|
|
|
|
, pipInstallHook
|
|
|
|
, setuptoolsBuildHook
|
2017-06-01 17:21:23 +01:00
|
|
|
}:
|
2011-03-29 16:02:15 +01:00
|
|
|
|
2019-07-17 19:36:47 +01:00
|
|
|
buildPythonPackage rec {
|
2016-11-14 20:58:43 +00:00
|
|
|
pname = "setuptools";
|
2019-10-16 10:23:21 +01:00
|
|
|
version = "41.4.0";
|
2019-10-14 01:20:04 +01:00
|
|
|
# Because of bootstrapping we don't use the setuptoolsBuildHook that comes with format="setuptools" directly.
|
|
|
|
# Instead, we override it to remove setuptools to avoid a circular dependency.
|
|
|
|
# The same is done for pip and the pipInstallHook.
|
2019-07-17 19:36:47 +01:00
|
|
|
format = "other";
|
2012-12-03 04:20:04 +00:00
|
|
|
|
2017-06-01 17:21:23 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
extension = "zip";
|
2019-10-16 10:23:21 +01:00
|
|
|
sha256 = "7eae782ccf36b790c21bde7d86a4f303a441cd77036b25c559a602cf5186ce4d";
|
2009-05-23 23:54:11 +01:00
|
|
|
};
|
|
|
|
|
2019-10-14 01:20:04 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
bootstrapped-pip
|
|
|
|
(pipInstallHook.override{pip=null;})
|
|
|
|
(setuptoolsBuildHook.override{setuptools=null; wheel=null;})
|
|
|
|
];
|
2019-07-17 19:36:47 +01:00
|
|
|
|
2019-10-14 01:20:04 +01:00
|
|
|
preBuild = lib.strings.optionalString (!stdenv.hostPlatform.isWindows) ''
|
|
|
|
export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0
|
2013-07-27 19:51:54 +01:00
|
|
|
'';
|
2009-05-23 23:54:11 +01:00
|
|
|
|
2019-10-14 01:20:04 +01:00
|
|
|
pipInstallFlags = [ "--ignore-installed" ];
|
|
|
|
|
2019-07-17 19:36:47 +01:00
|
|
|
# Adds setuptools to nativeBuildInputs causing infinite recursion.
|
|
|
|
catchConflicts = false;
|
2019-01-02 19:09:44 +00:00
|
|
|
|
2019-07-17 19:36:47 +01:00
|
|
|
# Requires pytest, causing infinite recursion.
|
|
|
|
doCheck = false;
|
2019-01-02 19:09:44 +00:00
|
|
|
|
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";
|
2017-11-10 21:13:27 +00:00
|
|
|
homepage = https://pypi.python.org/pypi/setuptools;
|
2017-08-06 12:49:18 +01:00
|
|
|
license = with licenses; [ psfl zpl20 ];
|
2018-06-12 19:56:11 +01:00
|
|
|
platforms = python.meta.platforms;
|
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
|
|
|
}
|