summary refs log blame commit diff
path: root/pkgs/development/interpreters/python/hooks/python-remove-tests-dir-hook.sh
blob: 83bea786db6daba1677468228a80477920e8fd76 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                                                  
# Clean up top-level tests directory in site-package installation.
echo "Sourcing python-remove-tests-dir-hook"

pythonRemoveTestsDir() {
    echo "Executing pythonRemoveTestsDir"

    rm -rf $out/@pythonSitePackages@/tests

    echo "Finished executing pythonRemoveTestsDir"
}

if [ -z "${dontUsePythonRemoveTestsDir-}" ]; then
    postFixupHooks+=(pythonRemoveTestsDir)
fi