Merge pull request #239586 from r-ryantm/auto-update/python310Packages.jwcrypto

python310Packages.jwcrypto: 1.4.2 -> 1.5.0
This commit is contained in:
Fabian Affolter 2023-06-24 23:54:50 +02:00 committed by GitHub
commit 3ecdab5d4e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,14 +8,14 @@
buildPythonPackage rec {
pname = "jwcrypto";
version = "1.4.2";
version = "1.5.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-gKNentGzssQ84D2SxdSObQtmR+KqJhjkljRIkj14o3s=";
hash = "sha256-LB3FHPjjjd8yR5Xf6UJt7p3UbK9H9TXMvBh4H7qBC40=";
};
propagatedBuildInputs = [
@ -30,6 +30,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Implementation of JOSE Web standards";
homepage = "https://github.com/latchset/jwcrypto";
changelog = "https://github.com/latchset/jwcrypto/releases/tag/v${version}";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ costrouc ];
};