blob: 9ba7a11942a528c4d2eeb33df839992f5a53a90a (
plain)
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
|
{
lib,
buildPythonPackage,
fetchPypi,
defcon,
fonttools,
lxml,
fs,
mutatormath,
fontmath,
fontparts,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "ufoprocessor";
version = "1.14.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
sha256 = "sha256-/TjTzDWblBcbqNP9weTe/eIgas70+X11tIUDu4rAOwE=";
};
build-system = [ setuptools-scm ];
dependencies = [
defcon
fontmath
fontparts
fonttools
mutatormath
]
++ defcon.optional-dependencies.lxml
++ fonttools.optional-dependencies.lxml
++ fonttools.optional-dependencies.ufo;
checkPhase = ''
runHook preCheck
for t in Tests/*.py; do
python "$t"
done
runHook postCheck
'';
meta = {
description = "Read, write and generate UFOs with designspace data";
homepage = "https://github.com/LettError/ufoProcessor";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.sternenseemann ];
};
}
|