summary refs log tree commit diff
path: root/pkgs/development/interpreters/python/wrapper.nix
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-12-10 15:21:02 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2017-12-10 15:21:35 +0100
commit163ba091171b364fc03a303b6b41c55298ca31d2 (patch)
treeca9c959ead0ba871c57602d8103872c12cbadd2c /pkgs/development/interpreters/python/wrapper.nix
parent5fdffa084f0ace533c717e5e1a8a83f94be74fe9 (diff)
downloadnixpkgs-163ba091171b364fc03a303b6b41c55298ca31d2.tar
nixpkgs-163ba091171b364fc03a303b6b41c55298ca31d2.tar.gz
nixpkgs-163ba091171b364fc03a303b6b41c55298ca31d2.tar.bz2
nixpkgs-163ba091171b364fc03a303b6b41c55298ca31d2.tar.lz
nixpkgs-163ba091171b364fc03a303b6b41c55298ca31d2.tar.xz
nixpkgs-163ba091171b364fc03a303b6b41c55298ca31d2.tar.zst
nixpkgs-163ba091171b364fc03a303b6b41c55298ca31d2.zip
python.buildEnv: always include the $out output
28299f669adc41e5278372cad952fb1e1165b44b introduced the first Python
packages having multiple outputs. The required outputs were not picked
up by `python.buildEnv` (#31857).

This commit modifies `python.buildEnv` so that it always includes the
$out output and thus fixes #31857.
Diffstat (limited to 'pkgs/development/interpreters/python/wrapper.nix')
-rw-r--r--pkgs/development/interpreters/python/wrapper.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/interpreters/python/wrapper.nix b/pkgs/development/interpreters/python/wrapper.nix
index fc521828ffc..8d4e68bf57c 100644
--- a/pkgs/development/interpreters/python/wrapper.nix
+++ b/pkgs/development/interpreters/python/wrapper.nix
@@ -14,7 +14,8 @@ let
     name = "${python.name}-env";
 
     inherit paths;
-    inherit ignoreCollisions extraOutputsToInstall;
+    inherit ignoreCollisions;
+    extraOutputsToInstall = [ "out" ] ++ extraOutputsToInstall;
 
     postBuild = ''
       . "${makeWrapper}/nix-support/setup-hook"