summary refs log tree commit diff
path: root/pkgs/development/interpreters/python/hooks/python-catch-conflicts-hook.sh
blob: 374a2eddb407e085e6be130ecc341278e35065ee (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