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

buildPythonPackage: install builds reproducibly

Without --build a temporary directory is created to unpack the wheel in.
We now set a directory instead.

+1 -1
+1 -1
pkgs/development/interpreters/python/build-python-package-common.nix
··· 24 24 export PYTHONPATH="$out/${python.sitePackages}:$PYTHONPATH" 25 25 26 26 pushd dist 27 - ${bootstrapped-pip}/bin/pip install *.whl --no-index --prefix=$out --no-cache ${toString installFlags} 27 + ${bootstrapped-pip}/bin/pip install *.whl --no-index --prefix=$out --no-cache ${toString installFlags} --build tmpbuild 28 28 popd 29 29 30 30 runHook postInstall