python3.pkgs.inkex: Fix build with lxml 5

https://gitlab.com/inkscape/extensions/-/issues/567
This commit is contained in:
Jan Tojnar 2024-03-02 12:21:19 +01:00
parent de24b83411
commit ab0b41f416

View File

@ -70,7 +70,8 @@ buildPythonPackage {
cd share/extensions
substituteInPlace pyproject.toml \
--replace 'scour = "^0.37"' 'scour = ">=0.37"'
--replace-fail 'scour = "^0.37"' 'scour = ">=0.37"' \
--replace-fail 'lxml = "^4.5.0"' 'lxml = "^4.5.0 || ^5.0.0"'
'';
meta = {