cd97c055a0
Execute in subshell so that the cwd returns back to the original directory. This is important as it enables pythonImportsCheck to work with checkPhase
17 lines
641 B
Bash
17 lines
641 B
Bash
# Setup hook for checking whether Python imports succeed
|
|
echo "Sourcing python-imports-check-hook.sh"
|
|
|
|
pythonImportsCheckPhase () {
|
|
echo "Executing pythonImportsCheckPhase"
|
|
|
|
if [ -n "$pythonImportsCheck" ]; then
|
|
echo "Check whether the following modules can be imported: $pythonImportsCheck"
|
|
( cd $out && eval "@pythonCheckInterpreter@ -c 'import os; import importlib; list(map(lambda mod: importlib.import_module(mod), os.environ[\"pythonImportsCheck\"].split()))'" )
|
|
fi
|
|
}
|
|
|
|
if [ -z "${dontUsePythonImportsCheck-}" ]; then
|
|
echo "Using pythonImportsCheckPhase"
|
|
preDistPhases+=" pythonImportsCheckPhase"
|
|
fi
|