35 lines
759 B
Nix
35 lines
759 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, mock
|
|
, scripttest
|
|
, virtualenv
|
|
, pretend
|
|
, pytest
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pip";
|
|
version = "18.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "a0e11645ee37c90b40c46d607070c4fd583e2cd46231b1c06e389c5e814eed76";
|
|
};
|
|
|
|
# pip detects that we already have bootstrapped_pip "installed", so we need
|
|
# to force it a little.
|
|
installFlags = [ "--ignore-installed" ];
|
|
|
|
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;
|
|
};
|
|
}
|