python3Packages.pyside2: fully disable webengine

This commit is contained in:
Grimmauld
2026-04-26 19:22:02 +02:00
parent a9b6cc5d7c
commit c1834898eb
@@ -7,7 +7,6 @@
ninja,
qt5,
shiboken2,
withWebengine ? false, # vulnerable, so omit by default
}:
stdenv.mkDerivation rec {
pname = "pyside2";
@@ -81,9 +80,6 @@ stdenv.mkDerivation rec {
qtsvg
qt3d
])
++ lib.optionals withWebengine [
qt5.qtwebengine
]
++ (with python.pkgs; [ setuptools ]);
propagatedBuildInputs = [ shiboken2 ];