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

45 lines
959 B
Nix
Raw Normal View History

2018-04-08 07:40:08 +01:00
{ lib
, python
2018-04-08 07:40:08 +01:00
, buildPythonPackage
, bootstrapped-pip
, fetchFromGitHub
2018-04-08 07:40:08 +01:00
, mock
, scripttest
, virtualenv
, pretend
, pytest
, setuptools
, wheel
2018-04-08 07:40:08 +01:00
}:
buildPythonPackage rec {
pname = "pip";
2019-10-18 11:42:06 +01:00
version = "19.3.1";
format = "other";
2018-04-08 07:40:08 +01:00
src = fetchFromGitHub {
owner = "pypa";
repo = pname;
rev = version;
sha256 = "079gz0v37ah1l4i5iwyfb0d3mni422yv5ynnxa0wcqpnvkc7sfnw";
name = "${pname}-${version}-source";
2018-04-08 07:40:08 +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.
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 = with lib.licenses; [ mit ];
2018-04-08 07:40:08 +01:00
homepage = https://pip.pypa.io/;
priority = 10;
};
2018-04-14 16:12:10 +01:00
}