1{ stdenv, python, fetchurl, makeWrapper, unzip }:
2
3let
4 wheel_source = fetchurl {
5 url = "https://pypi.python.org/packages/py2.py3/w/wheel/wheel-0.29.0-py2.py3-none-any.whl";
6 sha256 = "ea8033fc9905804e652f75474d33410a07404c1a78dd3c949a66863bd1050ebd";
7 };
8 setuptools_source = fetchurl {
9 url = "https://files.pythonhosted.org/packages/3b/c7/e9724e6f81c96248fba5876054418c11d327b3093d075790903cd66fad44/setuptools-26.1.1-py2.py3-none-any.whl";
10 sha256 = "226c9ce65e76c6069e805982b036f36dc4b227b37dd87fc219aef721ec8604ae";
11 };
12 argparse_source = fetchurl {
13 url = "https://pypi.python.org/packages/2.7/a/argparse/argparse-1.4.0-py2.py3-none-any.whl";
14 sha256 = "0533cr5w14da8wdb2q4py6aizvbvsdbk3sj7m1jx9lwznvnlf5n3";
15 };
16in stdenv.mkDerivation rec {
17 name = "python-${python.version}-bootstrapped-pip-${version}";
18 version = "8.1.2";
19
20 src = fetchurl {
21 url = "https://pypi.python.org/packages/9c/32/004ce0852e0a127f07f358b715015763273799bd798956fa930814b60f39/pip-${version}-py2.py3-none-any.whl";
22 sha256 = "18cjrd66mn4a0gwa99zzs89lrb0xn4xmajdzya6zqd7v16cdsr34";
23 };
24
25 unpackPhase = ''
26 mkdir -p $out/${python.sitePackages}
27 unzip -d $out/${python.sitePackages} $src
28 unzip -d $out/${python.sitePackages} ${setuptools_source}
29 unzip -d $out/${python.sitePackages} ${wheel_source}
30 '' + stdenv.lib.optionalString (python.isPy26 or false) ''
31 unzip -d $out/${python.sitePackages} ${argparse_source}
32 '';
33
34
35 patchPhase = ''
36 mkdir -p $out/bin
37 '';
38
39 buildInputs = [ python makeWrapper unzip ];
40
41 installPhase = ''
42
43 # install pip binary
44 echo '#!${python.interpreter}' > $out/bin/pip
45 echo 'import sys;from pip import main' >> $out/bin/pip
46 echo 'sys.exit(main())' >> $out/bin/pip
47 chmod +x $out/bin/pip
48
49 # wrap binaries with PYTHONPATH
50 for f in $out/bin/*; do
51 wrapProgram $f --prefix PYTHONPATH ":" $out/${python.sitePackages}/
52 done
53 '';
54}