python312Packages.pymupdf: mark as broken

This commit is contained in:
Gaetan Lepage 2024-09-15 16:02:37 +02:00
parent 9753a257cf
commit 38dfdd9096

View File

@ -187,12 +187,15 @@ buildPythonPackage rec {
pythonImportsCheck = [ "fitz" ];
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;
# ImportError: cannot import name '_mupdf' from partially initialized module 'mupdf'
# (most likely due to a circular import)
broken = true;
};
}