11 lines
205 B
Nix
11 lines
205 B
Nix
{stdenv, buildPythonPackage, fetchPypi, python26 }: buildPythonPackage rec {
|
|
pname = "pip";
|
|
version = "9.0.3";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "";
|
|
};
|
|
}
|