python3.pkgs.pipInstallHook: don't warn on script installation

This commit is contained in:
Jonathan Ringer 2020-11-20 11:43:56 -08:00 committed by Jonathan Ringer
parent 70ecb218f1
commit 8d210e2ea4

@ -11,7 +11,7 @@ pipInstallPhase() {
export PYTHONPATH="$out/@pythonSitePackages@:$PYTHONPATH"
pushd dist || return 1
@pythonInterpreter@ -m pip install ./*.whl --no-index --prefix="$out" --no-cache $pipInstallFlags --build tmpbuild
@pythonInterpreter@ -m pip install ./*.whl --no-index --no-warn-script-location --prefix="$out" --no-cache $pipInstallFlags --build tmpbuild
popd || return 1
runHook postInstall