File tree 2 files changed +2
-15
lines changed
pkgs/development/python-modules
2 files changed +2
-15
lines changed Original file line number Diff line number Diff line change @@ -25,10 +25,6 @@ stdenv.mkDerivation rec {
25
25
26
26
postPatch = ''
27
27
mkdir -p $out/bin
28
- '' + stdenv . lib . optionalString isPy27 ''
29
- pushd "${ pip . src . name } "
30
- patch -p1 < ${ builtins . elemAt pip . patches 0 }
31
- popd
32
28
'' ;
33
29
34
30
nativeBuildInputs = [ makeWrapper unzip ] ;
Original file line number Diff line number Diff line change 10
10
, pytest
11
11
, setuptools
12
12
, wheel
13
- , isPy27
14
- , fetchpatch
15
13
} :
16
14
17
15
buildPythonPackage rec {
18
16
pname = "pip" ;
19
- version = "20.2.4 " ;
17
+ version = "20.3 " ;
20
18
format = "other" ;
21
19
22
20
src = fetchFromGitHub {
23
21
owner = "pypa" ;
24
22
repo = pname ;
25
23
rev = version ;
26
- sha256 = "eMVV4ftgV71HLQsSeaOchYlfaJVgzNrwUynn3SA1/Do =" ;
24
+ sha256 = "e/2/0MrGY3myELmvuTAbNfXCBuT8kmvz9qTwITdDtQU =" ;
27
25
name = "${ pname } -${ version } -source" ;
28
26
} ;
29
27
30
28
nativeBuildInputs = [ bootstrapped-pip ] ;
31
29
32
- patches = lib . optionals isPy27 [
33
- ( fetchpatch {
34
- url = "https://github.com/pypa/pip/commit/94fbb6cf78c267bf7cdf83eeeb2536ad56cfe639.patch" ;
35
- sha256 = "Z6x5yxBp8QkU/GOfb1ltI0dVt//MaI09XK3cdY42kFs=" ;
36
- } )
37
- ] ;
38
-
39
30
# pip detects that we already have bootstrapped_pip "installed", so we need
40
31
# to force it a little.
41
32
pipInstallFlags = [ "--ignore-installed" ] ;
You can’t perform that action at this time.
0 commit comments