diff --git a/pkgs/development/python-modules/shiboken2/default.nix b/pkgs/development/python-modules/shiboken2/default.nix index 5d313334ae3a..abf29ffaff97 100644 --- a/pkgs/development/python-modules/shiboken2/default.nix +++ b/pkgs/development/python-modules/shiboken2/default.nix @@ -7,6 +7,7 @@ qt5, libxcrypt, llvmPackages_15, + pythonAtLeast, }: stdenv.mkDerivation { @@ -58,6 +59,6 @@ stdenv.mkDerivation { ]; homepage = "https://wiki.qt.io/Qt_for_Python"; maintainers = with maintainers; [ gebner ]; - broken = stdenv.isDarwin; + broken = stdenv.isDarwin || pythonAtLeast "3.12"; }; }