Files
nixpkgs/pkgs/development/interpreters/python/hooks/python-catch-conflicts-hook.sh
T

11 lines
279 B
Bash
Raw Normal View History

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