blob: e93de00b4c3a476af26be59ea9441021926c3c39 (
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
|
{
lib,
buildPythonPackage,
setuptools,
pytestCheckHook,
fetchFromGitea,
gitUpdater,
}:
buildPythonPackage rec {
pname = "highctidh";
version = "1.0.2025051200";
pyproject = true;
src = fetchFromGitea {
domain = "codeberg.org";
owner = "vula";
repo = "highctidh";
tag = "v${version}";
hash = "sha256-wGJv9UHAFfCOpTrr8THVk0DC+JUtj3gYYOf6o3EaSqg=";
};
sourceRoot = "${src.name}/src";
build-system = [
setuptools
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"highctidh"
];
passthru.updateScript = gitUpdater {
rev-prefix = "v";
};
meta = {
description = "Fork of high-ctidh as as a portable shared library with Python bindings";
homepage = "https://codeberg.org/vula/highctidh";
license = lib.licenses.publicDomain;
teams = with lib.teams; [ ngi ];
maintainers = with lib.maintainers; [
lorenzleutgeb
mightyiam
];
};
}
|