blob: 03a336abf81873b3fbc8f7f16a2fd7fd4b6e8b1d (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
numpy,
scipy,
hypothesis,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "open-hypergraphs";
version = "0.1.2";
pyproject = true;
src = fetchFromGitHub {
owner = "statusfailed";
repo = "open-hypergraphs";
tag = "pypi-${version}";
hash = "sha256-ifcQXZDnOvo2XL7WYVFLv2iHWhImUSp3jqAPPYySNjU=";
};
build-system = [
hatchling
];
dependencies = [
numpy
scipy
];
pythonRelaxDeps = [
"numpy"
"scipy"
];
nativeCheckInputs = [
pytestCheckHook
hypothesis
];
pythonImportsCheck = [
"open_hypergraphs"
];
meta = {
description = "Implementation of open hypergraphs for string diagrams";
homepage = "https://github.com/statusfailed/open-hypergraphs";
changelog = "https://github.com/statusfailed/open-hypergraphs/blob/${src.rev}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ bcdarwin ];
};
}
|