python3Packages.ufo-extractor: init at 0.8.1

This commit is contained in:
qb114514
2026-02-03 07:30:50 +08:00
parent 0c0f99f2ea
commit ea904951aa
2 changed files with 50 additions and 0 deletions
@@ -0,0 +1,48 @@
{
lib,
buildPythonPackage,
setuptools,
setuptools-scm,
fonttools,
fontfeatures,
pytestCheckHook,
fetchFromGitHub,
}:
buildPythonPackage (finalAttrs: {
pname = "ufo-extractor";
version = "0.8.1";
pyproject = true;
src = fetchFromGitHub {
owner = "robotools";
repo = "extractor";
tag = finalAttrs.version;
hash = "sha256-SzNNRC2UxjyypgiM0iIicfemC67D6GW2jszNak8yCSM=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
fonttools
fontfeatures
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "extractor" ];
meta = {
description = "Tools for extracting data from font binaries into UFO objects";
homepage = "https://github.com/robotools/extractor";
license = lib.licenses.mit;
changelog = "https://github.com/robotools/extractor/releases/tag/${finalAttrs.src.tag}";
maintainers = with lib.maintainers; [
qb114514
];
};
})
+2
View File
@@ -20010,6 +20010,8 @@ self: super: with self; {
ufmt = callPackage ../development/python-modules/ufmt { };
ufo-extractor = callPackage ../development/python-modules/ufo-extractor { };
ufo2ft = callPackage ../development/python-modules/ufo2ft { };
ufolib2 = callPackage ../development/python-modules/ufolib2 { };