pymupdf-fonts: init at 1.0.5
This commit is contained in:
parent
9c4bcdc56c
commit
3d0c8d963a
31
pkgs/development/python-modules/pymupdf-fonts/default.nix
Normal file
31
pkgs/development/python-modules/pymupdf-fonts/default.nix
Normal 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 = [ ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user