From 5277613ed341e321a9575e41a6fe013626a2779c Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Tue, 13 Aug 2024 08:24:04 +0200 Subject: [PATCH] python312Packages.pymupdf: mark as broken --- pkgs/development/python-modules/pymupdf/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/pymupdf/default.nix b/pkgs/development/python-modules/pymupdf/default.nix index dd3026712a441..e41e440fdcea7 100644 --- a/pkgs/development/python-modules/pymupdf/default.nix +++ b/pkgs/development/python-modules/pymupdf/default.nix @@ -178,12 +178,14 @@ buildPythonPackage rec { "fitz_old" ]; - meta = with lib; { + meta = { description = "Python bindings for MuPDF's rendering library"; homepage = "https://github.com/pymupdf/PyMuPDF"; changelog = "https://github.com/pymupdf/PyMuPDF/releases/tag/${version}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ teto ]; - platforms = platforms.unix; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ teto ]; + platforms = lib.platforms.unix; + # Exception: Command failed: c++ + broken = true; }; }