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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
gflanguages,
num2words,
protobuf,
pytestCheckHook,
pyyaml,
setuptools-scm,
setuptools,
strictyaml,
termcolor,
ufo2ft,
vharfbuzz,
youseedee,
}:
buildPythonPackage rec {
pname = "shaperglot";
version = "0.6.4";
pyproject = true;
src = fetchFromGitHub {
owner = "googlefonts";
repo = "shaperglot";
tag = "v${version}";
hash = "sha256-O6z7TJpC54QkqX5/G1HKSvaDYty7B9BnCQ4FpsLsEMs=";
};
env.PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION = "python";
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "setuptools>=75.0.0" "setuptools"
'';
build-system = [
setuptools
setuptools-scm
];
dependencies = [
gflanguages
num2words
protobuf
pyyaml
strictyaml
termcolor
ufo2ft
vharfbuzz
youseedee
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "shaperglot" ];
meta = {
description = "Tool to test OpenType fonts for language support";
homepage = "https://github.com/googlefonts/shaperglot";
changelog = "https://github.com/googlefonts/shaperglot/releases/tag/v${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ danc86 ];
mainProgram = "shaperglot";
};
}
|