Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

bootstrapped-pip: fix for cross (nativeBuildInputs)

+2 -1
+2 -1
pkgs/development/python-modules/bootstrapped-pip/default.nix
··· 46 46 mkdir -p $out/bin 47 47 ''; 48 48 49 - buildInputs = [ python makeWrapper unzip ]; 49 + nativeBuildInputs = [ makeWrapper unzip ]; 50 + buildInputs = [ python ]; 50 51 51 52 installPhase = '' 52 53