From 76627c2d5503bc8d10d28d15e7c5cf2950e1406c Mon Sep 17 00:00:00 2001 From: Grimmauld Date: Sat, 17 May 2025 14:43:42 +0200 Subject: [PATCH] python313Packages.shiboken2: mark broken The package uses `mkDerivation`+`toPythonModule` in python packages. This means `disabled` is not an option. The package already shouldn't work on py 3.12 as per compatibility matrix [1]. While it might be possible to patch this *again*, this poackage is currently a complete mess. [1] https://wiki.qt.io/Qt_for_Python#Python_compatibility_matrix --- pkgs/development/python-modules/shiboken2/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/shiboken2/default.nix b/pkgs/development/python-modules/shiboken2/default.nix index 764cd41bda94..dfbbae93d6b9 100644 --- a/pkgs/development/python-modules/shiboken2/default.nix +++ b/pkgs/development/python-modules/shiboken2/default.nix @@ -64,5 +64,6 @@ stdenv.mkDerivation { ]; homepage = "https://wiki.qt.io/Qt_for_Python"; maintainers = with maintainers; [ ]; + broken = python.pythonAtLeast "3.13"; }; }