blob: 2e491f43b024cbf94967b90a34e6b8783b12e482 (
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
|
{
lib,
fetchPypi,
buildPythonPackage,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "siphashc";
version = "2.7";
pyproject = true;
build-system = [ setuptools ];
src = fetchPypi {
inherit pname version;
sha256 = "sha256-ppRNc3aM9So6g0LunBka2UBFWQAvck9E4Ot6sOC96jM=";
};
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "siphashc" ];
meta = {
description = "Python c-module for siphash";
homepage = "https://github.com/WeblateOrg/siphashc";
changelog = "https://github.com/WeblateOrg/siphashc/blob/${version}/CHANGES.rst";
license = lib.licenses.isc;
maintainers = with lib.maintainers; [ erictapen ];
};
}
|