diff options
| author | K900 <me@0upti.me> | 2023-11-17 07:48:13 +0300 |
|---|---|---|
| committer | K900 <me@0upti.me> | 2023-11-17 07:48:13 +0300 |
| commit | 397a8fd06bd576cae7f1fae71dbfd9fbce30dc66 (patch) | |
| tree | 2f32ffc8895079f10025f88a8d88bffccc229c0d /pkgs/development/interpreters/python/python2 | |
| parent | f67b20cad6691a5844016876fb4e77082ad7ff34 (diff) | |
python2/mk-python-derivation: disable catchConflictsHook
It's broken on Py2. Hopefully people still using 2 know what they're doing?
Diffstat (limited to 'pkgs/development/interpreters/python/python2')
| -rw-r--r-- | pkgs/development/interpreters/python/python2/mk-python-derivation.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/interpreters/python/python2/mk-python-derivation.nix b/pkgs/development/interpreters/python/python2/mk-python-derivation.nix index 1a6f9c784cf6..6d51b51b215d 100644 --- a/pkgs/development/interpreters/python/python2/mk-python-derivation.nix +++ b/pkgs/development/interpreters/python/python2/mk-python-derivation.nix @@ -57,7 +57,8 @@ # Raise an error if two packages are installed with the same name # TODO: For cross we probably need a different PYTHONPATH, or not # add the runtime deps until after buildPhase. -, catchConflicts ? (python.stdenv.hostPlatform == python.stdenv.buildPlatform) +# FIXME: disabled for Python 2 because broken +, catchConflicts ? false # Additional arguments to pass to the makeWrapper function, which wraps # generated binaries. |
