mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
385d523a8e
Always specify the preInstallPhases attribute as a list instead of a string. Append elements to the preInstallPhases Bash variable using appendToVar instead of string or Bash array concatenation.
21 lines
580 B
Bash
21 lines
580 B
Bash
# Setup hook for PyPA installer.
|
|
echo "Sourcing python-runtime-deps-check-hook"
|
|
|
|
pythonRuntimeDepsCheckHook() {
|
|
echo "Executing pythonRuntimeDepsCheck"
|
|
|
|
export PYTHONPATH="$out/@pythonSitePackages@:$PYTHONPATH"
|
|
|
|
for wheel in dist/*.whl; do
|
|
echo "Checking runtime dependencies for $(basename $wheel)"
|
|
@pythonInterpreter@ @hook@ "$wheel"
|
|
done
|
|
|
|
echo "Finished executing pythonRuntimeDepsCheck"
|
|
}
|
|
|
|
if [ -z "${dontCheckRuntimeDeps-}" ]; then
|
|
echo "Using pythonRuntimeDepsCheckHook"
|
|
appendToVar preInstallPhases pythonRuntimeDepsCheckHook
|
|
fi
|