blob: 3c0cb45455ccabd5a5c1afe7bb80219934f082f7 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
flit-core,
pytestCheckHook,
pyyaml,
}:
buildPythonPackage rec {
pname = "svg-py";
version = "1.10.0";
pyproject = true;
src = fetchFromGitHub {
owner = "orsinium-labs";
repo = "svg.py";
tag = version;
hash = "sha256-ZbMDjo2p0DnLB5iwQ4J3NIP/zjPsBLq7vKStF9SzF9Y=";
};
build-system = [ flit-core ];
nativeCheckInputs = [
pytestCheckHook
pyyaml
];
pythonImportsCheck = [ "svg" ];
disabledTestPaths = [
# Tests need additional files
"tests/test_attributes.py"
];
meta = {
description = "Type-safe Python library to generate SVG files";
homepage = "https://github.com/orsinium-labs/svg.py";
changelog = "https://github.com/orsinium-labs/svg.py/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|