Files
nixpkgs/pkgs/development/interpreters/python/hooks/python-remove-tests-dir-hook.sh
T

16 lines
376 B
Bash
Raw Normal View History

2020-03-02 09:37:05 -08:00
# 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