mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-18 07:29:23 +03:00
11 lines
276 B
Bash
11 lines
276 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
|