python3Packages.ufo-extractor: init at 0.8.1 (#482691)

This commit is contained in:
Gaétan Lepage
2026-02-02 23:37:34 +00:00
committed by GitHub
3 changed files with 56 additions and 0 deletions
+6
View File
@@ -21561,6 +21561,12 @@
githubId = 12017109;
name = "Rabindra Dhakal";
};
qb114514 = {
name = "qb114514";
email = "GNUqb114514@outlook.com";
github = "GNUqb114514";
githubId = 110373832;
};
qbisi = {
name = "qbisicwate";
email = "qbisicwate@gmail.com";
@@ -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
@@ -20072,6 +20072,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 { };