blob: a7f31be0f5f30618937d8d59e92079897b48e3cf (
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
|
{
lib,
buildPythonPackage,
canonicaljson,
fetchPypi,
pynacl,
pytestCheckHook,
setuptools-scm,
unpaddedbase64,
}:
buildPythonPackage rec {
pname = "signedjson";
version = "1.1.4";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-zZHFavU/Fp7wMsYunEoyktwViGaTMxjQWS40Yts9ZJI=";
};
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [
canonicaljson
unpaddedbase64
pynacl
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "signedjson" ];
meta = {
description = "Sign JSON with Ed25519 signatures";
homepage = "https://github.com/matrix-org/python-signedjson";
license = lib.licenses.asl20;
maintainers = [ ];
};
}
|