2018-11-30 14:13:41 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, cryptography
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "jwcrypto";
|
2020-04-10 22:03:11 +02:00
|
|
|
version = "0.7";
|
2018-11-30 14:13:41 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-04-10 22:03:11 +02:00
|
|
|
sha256 = "002i60yidafpr642qcxrd74d8frbc4ci8vfysm05vqydcri1zgmd";
|
2018-11-30 14:13:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
cryptography
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Implementation of JOSE Web standards";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/latchset/jwcrypto";
|
2018-11-30 14:13:41 +01:00
|
|
|
license = licenses.lgpl3Plus;
|
|
|
|
maintainers = [ maintainers.costrouc ];
|
|
|
|
};
|
|
|
|
}
|