blob: d90b9c3c3bfdb5bde46c36646a4ba0b9e116bf69 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
setuptools,
setuptools-scm,
fonttools,
pyparsing,
ufolib2,
ufo2ft,
}:
buildPythonPackage rec {
pname = "vttlib";
version = "0.12.0";
pyproject = true;
src = fetchFromGitHub {
owner = "daltonmaag";
repo = "vttLib";
rev = "v${version}";
hash = "sha256-ChsuzeFRQFDYGlAE4TWzE+et7yGLOfha1VqGcOdayOs=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
fonttools
pyparsing
ufolib2
];
nativeCheckInputs = [
pytestCheckHook
ufo2ft
];
pythonImportsCheck = [ "vttLib" ];
meta = {
description = "Dump, merge and compile Visual TrueType data in UFO3 with FontTools";
homepage = "https://github.com/daltonmaag/vttLib";
changelog = "https://github.com/daltonmaag/vttLib/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jopejoe1 ];
};
}
|