summary refs log blame commit diff
path: root/pkgs/development/interpreters/python/hooks/python-imports-check-hook.sh
blob: f8ca84cd573abdeb431aee2978b7262f375e119b (plain) (tree)
1
2
3
4
5
6
7
8
9







                                                                                       
                                                                                                                                                                                        


      
                                               


                                             
# 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