blob: 7b06fe7a82528b2a89b2890e720f4159f185fc2c (
about) (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
setuptools-scm,
fonttools,
uharfbuzz,
}:
buildPythonPackage rec {
pname = "vharfbuzz";
version = "0.3.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-zFVw8Nxh7cRJNk/S7D3uiIGShBMiZ/JeuSdX4hN94kc=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
fonttools
uharfbuzz
];
# Package has no tests.
doCheck = false;
pythonImportsCheck = [ "vharfbuzz" ];
meta = with lib; {
description = "Utility for removing hinting data from TrueType and OpenType fonts";
homepage = "https://github.com/source-foundry/dehinter";
license = licenses.asl20;
maintainers = with maintainers; [ danc86 ];
};
}
|