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 { buildPythonPackage rec {
pname = "jwcrypto"; pname = "jwcrypto";
version = "1.4.2"; version = "1.5.0";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-gKNentGzssQ84D2SxdSObQtmR+KqJhjkljRIkj14o3s="; hash = "sha256-LB3FHPjjjd8yR5Xf6UJt7p3UbK9H9TXMvBh4H7qBC40=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -30,6 +30,7 @@ buildPythonPackage rec {
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";
changelog = "https://github.com/latchset/jwcrypto/releases/tag/v${version}";
license = licenses.lgpl3Plus; license = licenses.lgpl3Plus;
maintainers = with maintainers; [ costrouc ]; maintainers = with maintainers; [ costrouc ];
}; };