pymupdf-fonts: init at 1.0.5

This commit is contained in:
Lily Foster 2024-09-18 20:11:55 -04:00 committed by Emily
parent 9c4bcdc56c
commit 3d0c8d963a
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "pymupdf-fonts";
version = "1.0.5";
pyproject = true;
src = fetchPypi {
pname = "pymupdf_fonts";
inherit version;
hash = "sha256-rBLj7Er/o16aCsopE170HCO9vldYwzVdrCNphjCea8Y=";
};
build-system = [
setuptools
];
pythonImportsCheck = [ "pymupdf_fonts" ];
meta = {
description = "Collection of optional fonts for PyMuPDF";
homepage = "https://github.com/pymupdf/pymupdf-fonts";
license = lib.licenses.ofl;
maintainers = [ ];
};
}

View File

@ -11655,6 +11655,7 @@ self: super: with self; {
};
pymupdf = callPackage ../development/python-modules/pymupdf { };
pymupdf-fonts = callPackage ../development/python-modules/pymupdf-fonts { };
pymvglive = callPackage ../development/python-modules/pymvglive { };