nixpkgs/pkgs/development/python-modules/setuptools/default.nix

41 lines
999 B
Nix
Raw Normal View History

{ stdenv
, fetchPypi
, python
, wrapPython
, unzip
}:
# Should use buildPythonPackage here somehow
stdenv.mkDerivation rec {
pname = "setuptools";
2018-11-21 15:17:34 +00:00
version = "40.6.2";
name = "${python.libPrefix}-${pname}-${version}";
src = fetchPypi {
inherit pname version;
extension = "zip";
2018-11-21 15:17:34 +00:00
sha256 = "86bb4d8e1b0fabad1f4642b64c335b673e53e7a381de03c9a89fe678152c4c64";
};
nativeBuildInputs = [ unzip wrapPython ];
buildInputs = [ python ];
2015-11-18 10:46:34 +00:00
doCheck = false; # requires pytest
installPhase = ''
dst=$out/${python.sitePackages}
mkdir -p $dst
2015-07-15 18:40:56 +01:00
export PYTHONPATH="$dst:$PYTHONPATH"
2015-11-18 10:46:34 +00:00
${python.interpreter} setup.py install --prefix=$out
wrapPythonPrograms
2013-07-27 19:51:54 +01:00
'';
pythonPath = [];
meta = with stdenv.lib; {
description = "Utilities to facilitate the installation of Python packages";
homepage = https://pypi.python.org/pypi/setuptools;
license = with licenses; [ psfl zpl20 ];
platforms = python.meta.platforms;
priority = 10;
};
}