2017-06-01 09:21:23 -07:00
|
|
|
{ stdenv
|
|
|
|
, fetchPypi
|
|
|
|
, python
|
|
|
|
, wrapPython
|
|
|
|
, unzip
|
|
|
|
}:
|
2011-03-29 08:02:15 -07:00
|
|
|
|
2017-06-01 09:21:23 -07:00
|
|
|
# Should use buildPythonPackage here somehow
|
2011-03-29 08:02:15 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2016-11-14 12:58:43 -08:00
|
|
|
pname = "setuptools";
|
2019-04-16 10:19:21 -07:00
|
|
|
version = "41.0.0";
|
2017-06-01 09:21:23 -07:00
|
|
|
name = "${python.libPrefix}-${pname}-${version}";
|
2012-12-02 20:20:04 -08:00
|
|
|
|
2017-06-01 09:21:23 -07:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
extension = "zip";
|
2019-04-16 10:19:21 -07:00
|
|
|
sha256 = "79d30254b6fe7a8e672e43cd85f13a9f3f2a50080bc81d851143e2219ef0dcb1";
|
2009-05-23 15:54:11 -07:00
|
|
|
};
|
|
|
|
|
2019-01-02 11:09:44 -08:00
|
|
|
nativeBuildInputs = [ unzip wrapPython python.pythonForBuild ];
|
2015-11-18 02:46:34 -08:00
|
|
|
doCheck = false; # requires pytest
|
|
|
|
installPhase = ''
|
|
|
|
dst=$out/${python.sitePackages}
|
2011-03-29 08:02:15 -07:00
|
|
|
mkdir -p $dst
|
2015-07-15 10:40:56 -07:00
|
|
|
export PYTHONPATH="$dst:$PYTHONPATH"
|
2019-01-02 11:09:44 -08:00
|
|
|
${python.pythonForBuild.interpreter} setup.py install --prefix=$out
|
2011-03-29 08:02:15 -07:00
|
|
|
wrapPythonPrograms
|
2013-07-27 11:51:54 -07:00
|
|
|
'';
|
2009-05-23 15:54:11 -07:00
|
|
|
|
2016-07-02 14:43:51 -07:00
|
|
|
pythonPath = [];
|
|
|
|
|
2019-01-02 11:09:44 -08:00
|
|
|
dontPatchShebangs = true;
|
|
|
|
|
|
|
|
# Python packages built through cross-compilation are always for the host platform.
|
|
|
|
disallowedReferences = stdenv.lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [ python.pythonForBuild ];
|
|
|
|
|
|
|
|
|
2013-07-31 04:32:25 -07:00
|
|
|
meta = with stdenv.lib; {
|
2009-05-23 15:54:11 -07:00
|
|
|
description = "Utilities to facilitate the installation of Python packages";
|
2017-11-10 13:13:27 -08:00
|
|
|
homepage = https://pypi.python.org/pypi/setuptools;
|
2017-08-06 04:49:18 -07:00
|
|
|
license = with licenses; [ psfl zpl20 ];
|
2018-06-12 11:56:11 -07:00
|
|
|
platforms = python.meta.platforms;
|
2016-08-02 03:17:37 -07:00
|
|
|
priority = 10;
|
2015-08-27 09:45:48 -07:00
|
|
|
};
|
2009-05-23 15:54:11 -07:00
|
|
|
}
|