summary refs log tree commit diff
path: root/pkgs/development/interpreters/python/hooks/python-catch-conflicts-hook.sh
blob: e9065cf17934663ce33568abfd7ea8670b79e6c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# 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