2018-11-30 13:13:41 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, cryptography
|
2021-06-19 22:29:34 +01:00
|
|
|
, deprecated
|
2018-11-30 13:13:41 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "jwcrypto";
|
2022-05-13 05:37:57 +01:00
|
|
|
version = "1.3";
|
2018-11-30 13:13:41 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-05-13 05:37:57 +01:00
|
|
|
sha256 = "sha256-DWRhuhP3wnHYusUBjuYN28rl/zlAP6+kI3X1fQjjmLs=";
|
2018-11-30 13:13:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
cryptography
|
2021-06-19 22:29:34 +01:00
|
|
|
deprecated
|
2018-11-30 13:13:41 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Implementation of JOSE Web standards";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/latchset/jwcrypto";
|
2018-11-30 13:13:41 +00:00
|
|
|
license = licenses.lgpl3Plus;
|
|
|
|
maintainers = [ maintainers.costrouc ];
|
|
|
|
};
|
|
|
|
}
|