From 1f3967f132dd023cfb17b008dbbcb8d693bd72b9 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Thu, 29 May 2025 23:51:03 +0200 Subject: [PATCH] python312Packages.weasyprint: mark as broken on darwin --- pkgs/development/python-modules/weasyprint/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/weasyprint/default.nix b/pkgs/development/python-modules/weasyprint/default.nix index 77e64d1a0060..3767704c8200 100644 --- a/pkgs/development/python-modules/weasyprint/default.nix +++ b/pkgs/development/python-modules/weasyprint/default.nix @@ -111,5 +111,10 @@ buildPythonPackage rec { homepage = "https://weasyprint.org/"; license = lib.licenses.bsd3; teams = [ lib.teams.apm ]; + badPlatforms = [ + # Fatal Python error: Segmentation fault + # "...weasyprint/pdf/fonts.py", line 221 in _harfbuzz_subset + lib.systems.inspect.patterns.isDarwin + ]; }; }