Merge pull request #172805 from r-ryantm/auto-update/python3.10-jwcrypto

python310Packages.jwcrypto: 1.2 -> 1.3
main
Fabian Affolter 2 years ago committed by GitHub
commit 841b0dcf5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 14
      pkgs/development/python-modules/jwcrypto/default.nix

@ -3,15 +3,19 @@
, fetchPypi
, cryptography
, deprecated
, pythonOlder
}:
buildPythonPackage rec {
pname = "jwcrypto";
version = "1.2";
version = "1.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-7fQwkyFyHlFhzvzN1ksEUJ4Dkk/q894IW0d4B2WYmuM=";
hash = "sha256-DWRhuhP3wnHYusUBjuYN28rl/zlAP6+kI3X1fQjjmLs=";
};
propagatedBuildInputs = [
@ -19,10 +23,14 @@ buildPythonPackage rec {
deprecated
];
pythonImportsCheck = [
"jwcrypto"
];
meta = with lib; {
description = "Implementation of JOSE Web standards";
homepage = "https://github.com/latchset/jwcrypto";
license = licenses.lgpl3Plus;
maintainers = [ maintainers.costrouc ];
maintainers = with maintainers; [ costrouc ];
};
}

Loading…
Cancel
Save