summary refs log tree commit diff
diff options
context:
space:
mode:
authorlethalman <lucabru@src.gnome.org>2014-07-25 00:20:10 +0200
committerlethalman <lucabru@src.gnome.org>2014-07-25 00:20:10 +0200
commit4e0653737c4060b879455becbddb352fca3587c7 (patch)
treee56fdf913f4faf60bb874c64251a25c047111ce6
parentee8f098c9d5b3aa7726726ba7deb9ddb2f9cdfc4 (diff)
parent6ab564cf64796982247dcb048e3944c68ecfeb8e (diff)
downloadnixlib-4e0653737c4060b879455becbddb352fca3587c7.tar
nixlib-4e0653737c4060b879455becbddb352fca3587c7.tar.gz
nixlib-4e0653737c4060b879455becbddb352fca3587c7.tar.bz2
nixlib-4e0653737c4060b879455becbddb352fca3587c7.tar.lz
nixlib-4e0653737c4060b879455becbddb352fca3587c7.tar.xz
nixlib-4e0653737c4060b879455becbddb352fca3587c7.tar.zst
nixlib-4e0653737c4060b879455becbddb352fca3587c7.zip
Merge pull request #3365 from geerds/virtualenvwrapper
Fix runtime dependencies for virtualenvwrapper
-rw-r--r--pkgs/top-level/python-packages.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 065d959ec925..b2f3aca49cc5 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -8160,7 +8160,8 @@ rec {
     # pip depend on $HOME setting
     preConfigure = "export HOME=$TMPDIR";
 
-    buildInputs = [ pbr pip stevedore virtualenv virtualenv-clone pkgs.which ];
+    buildInputs = [ pbr pip pkgs.which ];
+    propagatedBuildInputs = [ stevedore virtualenv virtualenv-clone ];
 
     patchPhase = ''
       substituteInPlace "virtualenvwrapper.sh" --replace "which" "${pkgs.which}/bin/which"