summaryrefslogtreecommitdiff
path: root/pkgs/development/interpreters/python/hooks/python-remove-bin-bytecode-hook.sh
blob: 7e49251306e811e321e221753836c4a2d50d0572 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Setup hook for removing bytecode from the bin folder
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.

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
    appendToVar preDistPhases pythonRemoveBinBytecodePhase
fi