blob: 879b936cc12ec3c407640c2c2425ef59ef1965ed (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
cryptography,
deprecated,
pytestCheckHook,
setuptools,
typing-extensions,
}:
buildPythonPackage rec {
pname = "jwcrypto";
version = "1.5.6";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-dxqHdioMCBrmFmlYqVT4CEiCCyqwZpN9yLg3nWWxsDk=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
cryptography
deprecated
typing-extensions
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "jwcrypto" ];
meta = {
description = "Implementation of JOSE Web standards";
homepage = "https://github.com/latchset/jwcrypto";
changelog = "https://github.com/latchset/jwcrypto/releases/tag/v${version}";
license = lib.licenses.lgpl3Plus;
maintainers = [ ];
};
}
|