blob: d7577f1fafa8796869eefd5db178d11dd6b40ff7 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
unittestCheckHook,
setuptools-scm,
setuptools,
}:
buildPythonPackage rec {
pname = "opentypespec";
version = "1.9.2";
pyproject = true;
build-system = [
setuptools
setuptools-scm
];
src = fetchPypi {
inherit pname version;
hash = "sha256-5j89rMDKxGLLoN88/T7+e0xE8/eOmKN3eDpWxekJGiQ=";
};
nativeCheckInputs = [ unittestCheckHook ];
unittestFlagsArray = [
"-s"
"test"
"-v"
];
meta = {
description = "Python library for OpenType specification metadata";
homepage = "https://github.com/simoncozens/opentypespec-py";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ danc86 ];
};
}
|