From d923aeab060c5e053e58b6b39b22ea224c559003 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Sun, 23 Aug 2026 20:46:53 +0200 Subject: [PATCH] python314Packages.pypdfium2: skip test that does not work on ZFS --- pkgs/development/python-modules/pypdfium2/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/pypdfium2/default.nix b/pkgs/development/python-modules/pypdfium2/default.nix index 09795d6263ba..b1f7b13c8da0 100644 --- a/pkgs/development/python-modules/pypdfium2/default.nix +++ b/pkgs/development/python-modules/pypdfium2/default.nix @@ -84,6 +84,11 @@ buildPythonPackage rec { pytestCheckHook ]; + disabledTestPaths = [ + # does not work on ZFS with normalization + "tests/test_opener.py::test_open_garbled_filename" + ]; + pythonImportsCheck = [ "pypdfium2" ];