From 3cb9ae95839d79ade94123bf3ff22a2485f9a9ff Mon Sep 17 00:00:00 2001 From: dramforever Date: Fri, 10 Oct 2025 15:47:09 +0800 Subject: [PATCH] python3Packages.inkex: Skip .inx file related tests These fail on libxml2 >= 2.15 because schematron support is disabled. These should not affect runtime functionality since it's just testing that files in inkex are well-formed. --- pkgs/development/python-modules/inkex/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/inkex/default.nix b/pkgs/development/python-modules/inkex/default.nix index 534aa8ae551d..2a77286bd94d 100644 --- a/pkgs/development/python-modules/inkex/default.nix +++ b/pkgs/development/python-modules/inkex/default.nix @@ -72,6 +72,9 @@ buildPythonPackage { "tests/test_inkex_gui_window.py" # Failed to find pixmap 'image-missing' in /build/source/tests/data/ "tests/test_inkex_gui_pixmaps.py" + # Fails with libxml2 >= 2.15 with "lxml.etree was compiled without Schematron support" + "inkex/tester/test_inx_file.py" + "tests/test_inkex_inx.py" ]; postPatch = ''