blob: e34a81318e5e288817b3b1b9bb881423e0a3ca1e (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
fonttools,
setuptools-scm,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "fontmath";
version = "0.9.4";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-H9kZDJ14ThMFw8SXcbkdkQ8kakt8RO3iGcmaB+167aQ=";
extension = "zip";
};
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [ fonttools ];
nativeCheckInputs = [ pytestCheckHook ];
meta = {
description = "Collection of objects that implement fast font, glyph, etc. math";
homepage = "https://github.com/robotools/fontMath/";
changelog = "https://github.com/robotools/fontMath/releases/tag/${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ sternenseemann ];
};
}
|