From edd2121adec96725952dca3fa47c354d6ff99ca0 Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Fri, 28 Nov 2025 11:33:13 -0800 Subject: [PATCH 1/2] python3Packages.pymupdf: disable tests that trigger Trace/BPT trap 5 on Darwin These attempt to access the UI from within the build and fail. --- pkgs/development/python-modules/pymupdf/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/pymupdf/default.nix b/pkgs/development/python-modules/pymupdf/default.nix index 6f3e15e40b1a..92c88fdf783f 100644 --- a/pkgs/development/python-modules/pymupdf/default.nix +++ b/pkgs/development/python-modules/pymupdf/default.nix @@ -140,6 +140,11 @@ buildPythonPackage rec { disabledTestPaths = [ # mad about markdown table formatting "tests/test_tables.py::test_markdown" + ] + ++ lib.optional stdenv.hostPlatform.isDarwin [ + # Trace/BPT trap: 5 when getting widget options + "tests/test_4505.py" + "tests/test_widgets.py" ]; pythonImportsCheck = [ From 6b588c20457a6e5729be124ec2dd62ee97620fcb Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Fri, 28 Nov 2025 15:31:37 -0800 Subject: [PATCH 2/2] python3Packages.pymupdf: add sarahec as maintainer --- pkgs/development/python-modules/pymupdf/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pymupdf/default.nix b/pkgs/development/python-modules/pymupdf/default.nix index 92c88fdf783f..c7eb2afb2c1d 100644 --- a/pkgs/development/python-modules/pymupdf/default.nix +++ b/pkgs/development/python-modules/pymupdf/default.nix @@ -166,7 +166,7 @@ buildPythonPackage rec { homepage = "https://github.com/pymupdf/PyMuPDF"; changelog = "https://github.com/pymupdf/PyMuPDF/releases/tag/${src.tag}"; license = lib.licenses.agpl3Only; - maintainers = [ ]; + maintainers = with lib.maintainers; [ sarahec ]; platforms = lib.platforms.unix; }; }