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

Loading…
Cancel
Save