mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
Fix virtualenvwrapper for python 2.6
This commit is contained in:
parent
fab8ed0332
commit
a5b69c0a02
@ -9442,7 +9442,11 @@ let
|
||||
preConfigure = "export HOME=$TMPDIR";
|
||||
|
||||
buildInputs = with self; [ pbr pip pkgs.which ];
|
||||
propagatedBuildInputs = with self; [ stevedore virtualenv virtualenv-clone ];
|
||||
propagatedBuildInputs = with self; [
|
||||
stevedore
|
||||
virtualenv
|
||||
virtualenv-clone
|
||||
] ++ optional isPy26 argparse;
|
||||
|
||||
patchPhase = ''
|
||||
substituteInPlace "virtualenvwrapper.sh" --replace "which" "${pkgs.which}/bin/which"
|
||||
|
Loading…
Reference in New Issue
Block a user