Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
18 lines
626 B
Bash
18 lines
626 B
Bash
# 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
|