1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
{
lib,
booleanoperations,
buildPythonPackage,
cffsubr,
compreffor,
cu2qu,
defcon,
fetchFromGitHub,
fontmath,
fonttools,
pytestCheckHook,
setuptools-scm,
skia-pathops,
syrupy,
ufolib2,
}:
buildPythonPackage rec {
pname = "ufo2ft";
version = "3.6.8";
pyproject = true;
src = fetchFromGitHub {
owner = "googlefonts";
repo = "ufo2ft";
tag = "v${version}";
hash = "sha256-Qng6r+STE/Xz5T0kEwbj2eFDyWtIdH/I4wa6eO0epFc=";
};
build-system = [
setuptools-scm
];
pythonRelaxDeps = [ "cffsubr" ];
dependencies = [
cu2qu
fontmath
fonttools
defcon
compreffor
booleanoperations
cffsubr
ufolib2
skia-pathops
]
++ fonttools.optional-dependencies.lxml
++ fonttools.optional-dependencies.ufo;
nativeCheckInputs = [
pytestCheckHook
syrupy
];
disabledTests = [
# Do not depend on skia.
"test_removeOverlaps_CFF_pathops"
"test_removeOverlaps_pathops"
"test_custom_filters_as_argument"
"test_custom_filters_as_argument"
# Some integration tests fail
"test_compileVariableCFF2"
"test_compileVariableTTF"
"test_drop_glyph_names_variable"
"test_drop_glyph_names_variable"
];
pythonImportsCheck = [ "ufo2ft" ];
meta = {
description = "Bridge from UFOs to FontTools objects";
homepage = "https://github.com/googlefonts/ufo2ft";
changelog = "https://github.com/googlefonts/ufo2ft/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|