Unverified Commit 77fe6ebb authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

python312Packages.pymupdf: mark as broken (#342076)

parents 3647fc66 38dfdd90
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -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;
  };
}