40 lines
963 B
Nix
40 lines
963 B
Nix
{ stdenv
|
|
, fetchPypi
|
|
, python
|
|
, wrapPython
|
|
, unzip
|
|
}:
|
|
|
|
# Should use buildPythonPackage here somehow
|
|
stdenv.mkDerivation rec {
|
|
pname = "setuptools";
|
|
version = "36.4.0";
|
|
name = "${python.libPrefix}-${pname}-${version}";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
extension = "zip";
|
|
sha256 = "2758b0270fe8ceec42f336ee5b411e60dc8579febc27bb3ba9b794dc7f0239ae";
|
|
};
|
|
|
|
buildInputs = [ python wrapPython unzip ];
|
|
doCheck = false; # requires pytest
|
|
installPhase = ''
|
|
dst=$out/${python.sitePackages}
|
|
mkdir -p $dst
|
|
export PYTHONPATH="$dst:$PYTHONPATH"
|
|
${python.interpreter} setup.py install --prefix=$out
|
|
wrapPythonPrograms
|
|
'';
|
|
|
|
pythonPath = [];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Utilities to facilitate the installation of Python packages";
|
|
homepage = http://pypi.python.org/pypi/setuptools;
|
|
license = with licenses; [ psfl zpl20 ];
|
|
platforms = platforms.all;
|
|
priority = 10;
|
|
};
|
|
}
|