summary refs log tree commit diff
path: root/pkgs/development/python-modules/bootstrapped-pip
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-01-11 11:27:04 -0600
committerWill Dietz <w@wdtz.org>2018-01-22 17:19:03 -0600
commit4e80b56c3cf26d8150898088a9df9937cffefb41 (patch)
tree578aa790fc32e9c076444c48a8af83dc02deb7b7 /pkgs/development/python-modules/bootstrapped-pip
parente33499bd30c705597c9b8599add086c256e2677c (diff)
downloadnixlib-4e80b56c3cf26d8150898088a9df9937cffefb41.tar
nixlib-4e80b56c3cf26d8150898088a9df9937cffefb41.tar.gz
nixlib-4e80b56c3cf26d8150898088a9df9937cffefb41.tar.bz2
nixlib-4e80b56c3cf26d8150898088a9df9937cffefb41.tar.lz
nixlib-4e80b56c3cf26d8150898088a9df9937cffefb41.tar.xz
nixlib-4e80b56c3cf26d8150898088a9df9937cffefb41.tar.zst
nixlib-4e80b56c3cf26d8150898088a9df9937cffefb41.zip
bootstrapped-pip: fix for cross (nativeBuildInputs)
Diffstat (limited to 'pkgs/development/python-modules/bootstrapped-pip')
-rw-r--r--pkgs/development/python-modules/bootstrapped-pip/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/bootstrapped-pip/default.nix b/pkgs/development/python-modules/bootstrapped-pip/default.nix
index 88209ad3fd1b..37c3ea5d72ac 100644
--- a/pkgs/development/python-modules/bootstrapped-pip/default.nix
+++ b/pkgs/development/python-modules/bootstrapped-pip/default.nix
@@ -46,7 +46,8 @@ in stdenv.mkDerivation rec {
     mkdir -p $out/bin
   '';
 
-  buildInputs = [ python makeWrapper unzip ];
+  nativeBuildInputs = [ makeWrapper unzip ];
+  buildInputs = [ python ];
 
   installPhase = ''