summary refs log tree commit diff
path: root/pkgs/development/interpreters/python/hooks/python-remove-tests-dir-hook.sh
blob: ad9e3c07cf244657acc4468c8b010a903f047013 (plain) (blame)
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
    rm -rf $out/@pythonSitePackages@/test

    echo "Finished executing pythonRemoveTestsDir"
}

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