3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/jwcrypto/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
544 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, cryptography
, deprecated
}:
buildPythonPackage rec {
pname = "jwcrypto";
2022-05-13 05:37:57 +01:00
version = "1.3";
src = fetchPypi {
inherit pname version;
2022-05-13 05:37:57 +01:00
sha256 = "sha256-DWRhuhP3wnHYusUBjuYN28rl/zlAP6+kI3X1fQjjmLs=";
};
propagatedBuildInputs = [
cryptography
deprecated
];
meta = with lib; {
description = "Implementation of JOSE Web standards";
homepage = "https://github.com/latchset/jwcrypto";
license = licenses.lgpl3Plus;
maintainers = [ maintainers.costrouc ];
};
}