2016-01-23 14:09:44 +03:00
|
|
|
{ stdenv, lib, fetchurl, python, wrapPython }:
|
2011-03-29 19:02:15 +04:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-11-14 23:58:43 +03:00
|
|
|
pname = "setuptools";
|
|
|
|
shortName = "${pname}-${version}";
|
2016-09-01 16:03:25 +03:00
|
|
|
name = "${python.libPrefix}-${shortName}";
|
2012-12-03 08:20:04 +04:00
|
|
|
|
2016-12-05 14:46:57 +03:00
|
|
|
version = "30.2.0";
|
2009-05-24 02:54:11 +04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-11-14 23:58:43 +03:00
|
|
|
url = "mirror://pypi/${builtins.substring 0 1 pname}/${pname}/${shortName}.tar.gz";
|
2016-12-05 14:46:57 +03:00
|
|
|
sha256 = "f865709919903e3399343c0b3c42f95e9aeddc41e38cfb334fb2bb5dfa384857";
|
2009-05-24 02:54:11 +04:00
|
|
|
};
|
|
|
|
|
2015-11-18 13:46:34 +03:00
|
|
|
buildInputs = [ python wrapPython ];
|
|
|
|
doCheck = false; # requires pytest
|
|
|
|
installPhase = ''
|
|
|
|
dst=$out/${python.sitePackages}
|
2011-03-29 19:02:15 +04:00
|
|
|
mkdir -p $dst
|
2015-07-15 20:40:56 +03:00
|
|
|
export PYTHONPATH="$dst:$PYTHONPATH"
|
2015-11-18 13:46:34 +03:00
|
|
|
${python.interpreter} setup.py install --prefix=$out
|
2011-03-29 19:02:15 +04:00
|
|
|
wrapPythonPrograms
|
2013-07-27 22:51:54 +04:00
|
|
|
'';
|
2009-05-24 02:54:11 +04:00
|
|
|
|
2016-07-03 00:43:51 +03:00
|
|
|
pythonPath = [];
|
|
|
|
|
2013-07-31 15:32:25 +04:00
|
|
|
meta = with stdenv.lib; {
|
2009-05-24 02:54:11 +04:00
|
|
|
description = "Utilities to facilitate the installation of Python packages";
|
|
|
|
homepage = http://pypi.python.org/pypi/setuptools;
|
2016-01-23 14:09:44 +03:00
|
|
|
license = with lib.licenses; [ psfl zpt20 ];
|
2013-07-31 15:32:25 +04:00
|
|
|
platforms = platforms.all;
|
2016-08-02 13:17:37 +03:00
|
|
|
priority = 10;
|
2015-08-27 19:45:48 +03:00
|
|
|
};
|
2009-05-24 02:54:11 +04:00
|
|
|
}
|