Commit b0f5cb08 authored by Tobias Markus's avatar Tobias Markus
Browse files

pyside2: Disable on Python 3.11 or later

PySide2 does not support Python versions after 3.10.

See https://bugreports.qt.io/browse/PYSIDE-1864
"There are no plans to support Python versions > 3.10 in the 5.15 branch."
parent 53cd64ce
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
{ python
, pythonAtLeast
, disabledIf
, fetchurl
, lib
, stdenv
@@ -9,6 +11,10 @@
, shiboken2
}:

# Only build when Python<=3.10
# See https://bugreports.qt.io/browse/PYSIDE-1864
# "There are no plans to support Python versions > 3.10 in the 5.15 branch."
disabledIf (pythonAtLeast "3.11") (
stdenv.mkDerivation rec {
  pname = "pyside2";
  version = "5.15.5";
@@ -74,4 +80,4 @@ stdenv.mkDerivation rec {
    homepage = "https://wiki.qt.io/Qt_for_Python";
    maintainers = with maintainers; [ gebner ];
  };
}
})