python3Packages.ufo-extractor: init at 0.8.1 (#482691)
This commit is contained in:
@@ -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
|
||||
];
|
||||
};
|
||||
})
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user