2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchFromGitHub,
|
|
|
|
fonttools,
|
|
|
|
openstep-plist,
|
|
|
|
ufolib2,
|
|
|
|
pytestCheckHook,
|
|
|
|
unicodedata2,
|
|
|
|
setuptools-scm,
|
|
|
|
ufonormalizer,
|
|
|
|
xmldiff,
|
|
|
|
defcon,
|
|
|
|
ufo2ft,
|
|
|
|
skia-pathops,
|
2022-04-27 09:35:20 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "glyphslib";
|
2024-09-19 14:19:46 +00:00
|
|
|
version = "6.8.2";
|
2022-04-27 09:35:20 +00:00
|
|
|
|
|
|
|
format = "pyproject";
|
|
|
|
|
2022-08-12 12:06:08 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "googlefonts";
|
|
|
|
repo = "glyphsLib";
|
2022-10-06 18:32:54 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2024-09-19 14:19:46 +00:00
|
|
|
hash = "sha256-AcAk9lFueIWYsDK1ESSK6D0/i1qW7udDfUa1pFRqGQs=";
|
2022-04-27 09:35:20 +00:00
|
|
|
};
|
|
|
|
|
2022-08-12 12:06:08 +00:00
|
|
|
nativeBuildInputs = [ setuptools-scm ];
|
2022-04-27 09:35:20 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
fonttools
|
|
|
|
openstep-plist
|
2024-01-13 08:15:51 +00:00
|
|
|
ufolib2
|
2022-04-27 09:35:20 +00:00
|
|
|
unicodedata2
|
|
|
|
ufonormalizer
|
|
|
|
xmldiff
|
|
|
|
defcon
|
|
|
|
ufo2ft
|
|
|
|
skia-pathops
|
|
|
|
];
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
2022-08-12 12:06:08 +00:00
|
|
|
|
|
|
|
pythonImportsCheck = [ "glyphsLib" ];
|
|
|
|
|
2022-04-27 09:35:20 +00:00
|
|
|
disabledTestPaths = [
|
|
|
|
"tests/builder/designspace_gen_test.py" # this test tries to use non-existent font "CoolFoundry Examplary Serif"
|
|
|
|
"tests/builder/interpolation_test.py" # this test tries to use a font that previous test should made
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Bridge from Glyphs source files (.glyphs) to UFOs and Designspace files via defcon and designspaceLib";
|
|
|
|
homepage = "https://github.com/googlefonts/glyphsLib";
|
|
|
|
license = lib.licenses.asl20;
|
|
|
|
maintainers = [ lib.maintainers.BarinovMaxim ];
|
|
|
|
};
|
|
|
|
}
|