summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-11-20 11:43:56 -0800
committerJonathan Ringer <jonringer@users.noreply.github.com>2020-11-20 12:25:52 -0800
commit8d210e2ea42f5a6ef10320800355ecd4b49fb428 (patch)
treef2389e2f092c20c5ae8ac3be95497393d96d4d59 /pkgs/development
parent70ecb218f1d12ee4825d1c511573be51038af70b (diff)
downloadnixpkgs-8d210e2ea42f5a6ef10320800355ecd4b49fb428.tar
nixpkgs-8d210e2ea42f5a6ef10320800355ecd4b49fb428.tar.gz
nixpkgs-8d210e2ea42f5a6ef10320800355ecd4b49fb428.tar.bz2
nixpkgs-8d210e2ea42f5a6ef10320800355ecd4b49fb428.tar.lz
nixpkgs-8d210e2ea42f5a6ef10320800355ecd4b49fb428.tar.xz
nixpkgs-8d210e2ea42f5a6ef10320800355ecd4b49fb428.tar.zst
nixpkgs-8d210e2ea42f5a6ef10320800355ecd4b49fb428.zip
python3.pkgs.pipInstallHook: don't warn on script installation
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/interpreters/python/hooks/pip-install-hook.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/interpreters/python/hooks/pip-install-hook.sh b/pkgs/development/interpreters/python/hooks/pip-install-hook.sh
index 4eefe22d3f2..c15b99adef6 100644
--- a/pkgs/development/interpreters/python/hooks/pip-install-hook.sh
+++ b/pkgs/development/interpreters/python/hooks/pip-install-hook.sh
@@ -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