forked from mirrors/nixpkgs
Merge pull request #205909 from NixOS/fix-bootstrapped-pip-post-patch
This commit is contained in:
commit
997d9f10ad
|
@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
postPatch = ''
|
||||
mkdir -p $out/bin
|
||||
'' + pip.postPatch;
|
||||
'' + (pip.postPatch or ""); # `pip` does not necessarily have a `postPatch` field.
|
||||
|
||||
nativeBuildInputs = [ makeWrapper unzip ];
|
||||
buildInputs = [ python ];
|
||||
|
|
Loading…
Reference in a new issue