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."
This commit is contained in:
Tobias Markus
2023-02-11 01:42:45 +01:00
parent 53cd64ce18
commit b0f5cb08bf
@@ -1,4 +1,6 @@
{ 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 ];
};
}
})