about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2010-03-01 13:12:56 +0000
committerLudovic Courtès <ludo@gnu.org>2010-03-01 13:12:56 +0000
commit72d59e3920caa801f3a64f584f3ddf3f5b472a5c (patch)
treeb00c11c04c6203a223914bc5794d9ff7ecac0417 /pkgs/development
parent67b7a89daf3e737bff7c6da8ef06f9c1baa3089d (diff)
downloadnixlib-72d59e3920caa801f3a64f584f3ddf3f5b472a5c.tar
nixlib-72d59e3920caa801f3a64f584f3ddf3f5b472a5c.tar.gz
nixlib-72d59e3920caa801f3a64f584f3ddf3f5b472a5c.tar.bz2
nixlib-72d59e3920caa801f3a64f584f3ddf3f5b472a5c.tar.lz
nixlib-72d59e3920caa801f3a64f584f3ddf3f5b472a5c.tar.xz
nixlib-72d59e3920caa801f3a64f584f3ddf3f5b472a5c.tar.zst
nixlib-72d59e3920caa801f3a64f584f3ddf3f5b472a5c.zip
buildPythonPackage: Adapt to the cross-build-aware `stdenv'.
svn path=/nixpkgs/trunk/; revision=20306
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/generic/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/generic/default.nix b/pkgs/development/python-modules/generic/default.nix
index ce3c7d319d6f..458a30116ae8 100644
--- a/pkgs/development/python-modules/generic/default.nix
+++ b/pkgs/development/python-modules/generic/default.nix
@@ -15,9 +15,9 @@ let
     recursiveBuildInputs =
       pkg:
         [ pkg ] ++
-        (if pkg ? propagatedBuildInputs
+        (if pkg ? propagatedBuildNativeInputs
          then lib.concatLists (map recursiveBuildInputs
-                                   pkg.propagatedBuildInputs)
+                                   pkg.propagatedBuildNativeInputs)
          else []);
 
 in