blob: 07e9db803be825790449cc981170f133790b4963 (
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
|
{
lib,
buildPythonPackage,
cffi,
fetchFromGitHub,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "pyspx";
version = "0.5.2";
pyproject = true;
src = fetchFromGitHub {
owner = "sphincs";
repo = "pyspx";
tag = "v${version}";
hash = "sha256-hMZ7JZoo5RdUwQYpGjtZznH/O6rBUXv+svfOAI0cjqs=";
fetchSubmodules = true;
};
build-system = [
cffi
setuptools
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pyspx" ];
meta = {
description = "Python bindings for SPHINCS";
homepage = "https://github.com/sphincs/pyspx";
changelog = "https://github.com/sphincs/pyspx/releases/tag/v${version}";
license = lib.licenses.cc0;
maintainers = with lib.maintainers; [ fab ];
};
}
|