depot/third_party/nixpkgs/pkgs/development/python-modules/jwcrypto/default.nix
Default email 58849dfc4f Project import generated by Copybara.
GitOrigin-RevId: 21c937f8cb1e6adcfeb36dfd6c90d9d9bfab1d28
2021-08-27 16:25:00 +02:00

28 lines
557 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, cryptography
, deprecated
}:
buildPythonPackage rec {
pname = "jwcrypto";
version = "1.0";
src = fetchPypi {
inherit pname version;
sha256 = "f88816eb0a41b8f006af978ced5f171f33782525006cdb055b536a40f4d46ac9";
};
propagatedBuildInputs = [
cryptography
deprecated
];
meta = with lib; {
description = "Implementation of JOSE Web standards";
homepage = "https://github.com/latchset/jwcrypto";
license = licenses.lgpl3Plus;
maintainers = [ maintainers.costrouc ];
};
}