1# Setup hook for detecting conflicts in Python packages
2echo "Sourcing python-catch-conflicts-hook.sh"
3
4pythonCatchConflictsPhase() {
5 PYTHONPATH="@setuptools@/@pythonSitePackages@:$PYTHONPATH" @pythonInterpreter@ @catchConflicts@
6}
7
8if [ -z "${dontUsePythonCatchConflicts-}" ]; then
9 appendToVar preDistPhases pythonCatchConflictsPhase
10fi