forked from mirrors/nixpkgs
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 a new issue