nixpkgs/pkgs/development/python-modules/jwcrypto/default.nix
2020-08-27 19:03:36 -07:00

27 lines
529 B
Nix

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