python3Packages.plover_5: handle PySide6-Essentials exclusion with pythonRemoveDeps

This commit is contained in:
Yueh-Shun Li
2026-06-13 14:56:02 +08:00
parent ca4b3d027c
commit da525beb6c
+8 -2
View File
@@ -53,10 +53,16 @@ buildPythonPackage (finalAttrs: {
# pythonRelaxDeps seemingly doesn't work here
postPatch = ''
sed -i 's/,<77//g' pyproject.toml
sed -i /PySide6-Essentials/d pyproject.toml
'';
pythonRelaxDeps = [ "xkbcommon" ];
pythonRelaxDeps = [
"xkbcommon"
];
pythonRemoveDeps = [
# We currently don't have it in Nixpkgs.
"PySide6-Essentials"
];
build-system = [
babel