pythonPackages: shellHook of buildPythonPackages needs tmp_path to have lib/pythonX.Y/site-packages folder

This commit is contained in:
Rok Garbas 2015-11-23 17:43:32 +01:00
parent fc611fe634
commit d82f55aead

View File

@ -116,6 +116,7 @@ python.stdenv.mkDerivation (builtins.removeAttrs attrs ["disabled"] // {
tmp_path=$(mktemp -d)
export PATH="$tmp_path/bin:$PATH"
export PYTHONPATH="$tmp_path/${python.sitePackages}:$PYTHONPATH"
mkdir -p $tmp_path/lib/${python.libPrefix}/site-packages
${bootstrapped-pip}/bin/pip install -e . --prefix $tmp_path
fi
${postShellHook}