Files
nixpkgs/pkgs/development/interpreters/python/hooks/python-remove-bin-bytecode-hook.sh
T

18 lines
615 B
Bash
Raw Normal View History

# Setup hook for removing bytecode from the bin folder
2019-07-17 20:36:47 +02:00
echo "Sourcing python-remove-bin-bytecode-hook.sh"
# The bin folder is added to $PATH and should only contain executables.
# It may happen there are executables with a .py extension for which
# bytecode is generated. This hook removes that bytecode.
2019-07-17 20:36:47 +02:00
pythonRemoveBinBytecodePhase () {
if [ -d "$out/bin" ]; then
rm -rf "$out/bin/__pycache__" # Python 3
find "$out/bin" -type f -name "*.pyc" -delete # Python 2
fi
}
if [ -z "${dontUsePythonRemoveBinBytecode-}" ]; then
2019-07-17 20:36:47 +02:00
preDistPhases+=" pythonRemoveBinBytecodePhase"
fi