2018-04-08 07:40:08 +01:00
|
|
|
{ lib
|
2019-07-17 19:36:47 +01:00
|
|
|
, python
|
2018-04-08 07:40:08 +01:00
|
|
|
, buildPythonPackage
|
2019-07-17 19:36:47 +01:00
|
|
|
, bootstrapped-pip
|
2018-04-08 07:40:08 +01:00
|
|
|
, fetchPypi
|
|
|
|
, mock
|
|
|
|
, scripttest
|
|
|
|
, virtualenv
|
|
|
|
, pretend
|
|
|
|
, pytest
|
2019-07-17 19:36:47 +01:00
|
|
|
, setuptools
|
|
|
|
, wheel
|
2018-04-08 07:40:08 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pip";
|
2019-06-15 07:44:29 +01:00
|
|
|
version = "19.1.1";
|
2019-07-17 19:36:47 +01:00
|
|
|
format = "other";
|
2018-04-08 07:40:08 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-06-15 07:44:29 +01:00
|
|
|
sha256 = "44d3d7d3d30a1eb65c7e5ff1173cdf8f7467850605ac7cc3707b6064bddd0958";
|
2018-04-08 07:40:08 +01:00
|
|
|
};
|
|
|
|
|
2019-07-17 19:36:47 +01:00
|
|
|
nativeBuildInputs = [ bootstrapped-pip ];
|
|
|
|
|
2018-04-08 07:40:08 +01:00
|
|
|
# pip detects that we already have bootstrapped_pip "installed", so we need
|
|
|
|
# to force it a little.
|
2019-07-17 19:36:47 +01:00
|
|
|
pipInstallFlags = [ "--ignore-installed" ];
|
2018-04-08 07:40:08 +01:00
|
|
|
|
|
|
|
checkInputs = [ mock scripttest virtualenv pretend pytest ];
|
|
|
|
# Pip wants pytest, but tests are not distributed
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "The PyPA recommended tool for installing Python packages";
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
homepage = https://pip.pypa.io/;
|
|
|
|
priority = 10;
|
|
|
|
};
|
2018-04-14 16:12:10 +01:00
|
|
|
}
|