forked from mirrors/nixpkgs
python3.pkgs.pipInstallHook: don't warn on script installation
This commit is contained in:
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
|
||||
|
|
Loading…
Reference in a new issue