nixpkgs-odroid-hc4/pkgs/development/interpreters/python/hooks/python-catch-conflicts-hook.sh
2025-12-20 09:59:59 +11:00

10 lines
279 B
Bash

# Setup hook for detecting conflicts in Python packages
echo "Sourcing python-catch-conflicts-hook.sh"
pythonCatchConflictsPhase() {
@pythonInterpreter@ @catchConflicts@
}
if [ -z "${dontUsePythonCatchConflicts-}" ]; then
preDistPhases+=" pythonCatchConflictsPhase"
fi