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