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

46 lines
1.2 KiB
Nix
Raw Normal View History

2017-06-01 18:21:23 +02:00
{ stdenv
, fetchPypi
, python
, wrapPython
, unzip
}:
2017-06-01 18:21:23 +02:00
# Should use buildPythonPackage here somehow
stdenv.mkDerivation rec {
2016-11-14 21:58:43 +01:00
pname = "setuptools";
2019-01-17 16:13:07 +01:00
version = "40.6.3";
2017-06-01 18:21:23 +02:00
name = "${python.libPrefix}-${pname}-${version}";
2012-12-03 05:20:04 +01:00
2017-06-01 18:21:23 +02:00
src = fetchPypi {
inherit pname version;
extension = "zip";
2019-01-17 16:13:07 +01:00
sha256 = "3b474dad69c49f0d2d86696b68105f3a6f195f7ab655af12ef9a9c326d2b08f8";
};
2019-01-02 20:09:44 +01:00
nativeBuildInputs = [ unzip wrapPython python.pythonForBuild ];
2015-11-18 11:46:34 +01:00
doCheck = false; # requires pytest
installPhase = ''
dst=$out/${python.sitePackages}
mkdir -p $dst
2015-07-15 19:40:56 +02:00
export PYTHONPATH="$dst:$PYTHONPATH"
2019-01-02 20:09:44 +01:00
${python.pythonForBuild.interpreter} setup.py install --prefix=$out
wrapPythonPrograms
2013-07-27 20:51:54 +02:00
'';
pythonPath = [];
2019-01-02 20:09:44 +01: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 ];
meta = with stdenv.lib; {
description = "Utilities to facilitate the installation of Python packages";
homepage = https://pypi.python.org/pypi/setuptools;
2017-08-06 13:49:18 +02:00
license = with licenses; [ psfl zpl20 ];
2018-06-12 20:56:11 +02:00
platforms = python.meta.platforms;
2016-08-02 12:17:37 +02:00
priority = 10;
2015-08-27 18:45:48 +02:00
};
}