mupdf: mark as broken when using python

This commit is contained in:
Gaetan Lepage 2024-09-16 07:45:57 +02:00
parent 38dfdd9096
commit f7ea454899
2 changed files with 3 additions and 3 deletions

View File

@ -212,5 +212,8 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ fpletz ];
platforms = platforms.unix;
mainProgram = "mupdf";
# ImportError: cannot import name '_mupdf' from partially initialized module 'mupdf'
# (most likely due to a circular import)
broken = enablePython;
};
}

View File

@ -194,8 +194,5 @@ buildPythonPackage rec {
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;
};
}