blob: f0d01e3756e5bf555c8095cf8107ff56d540c6ee (
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
52
53
54
55
56
57
58
59
60
61
62
|
{
lib,
buildPythonPackage,
fetchPypi,
fonttools,
pyclipper,
defcon,
fontpens,
setuptools,
setuptools-scm,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "booleanoperations";
version = "0.9.0";
pyproject = true;
src = fetchPypi {
pname = "booleanOperations";
inherit version;
hash = "sha256-jPqCHDKtN0+hINay4LRE6+rFfJHmYxUoZF+hmsKigbg=";
extension = "zip";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
fonttools
pyclipper
];
pythonImportsCheck = [ "booleanOperations" ];
nativeCheckInputs = [
defcon
fontpens
pytestCheckHook
];
disabledTests = [
# started failing with fonttools update from 4.55.3 -> 4.56.0
"test_QTail_reversed_difference"
"test_QTail_reversed_intersection"
"test_QTail_reversed_union"
"test_QTail_reversed_xor"
"test_Q_difference"
"test_Q_intersection"
"test_Q_union"
"test_Q_xor"
];
meta = {
description = "Boolean operations on paths";
homepage = "https://github.com/typemytype/booleanOperations";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.sternenseemann ];
};
}
|