python3Packages.joserfc: 1.0.1 -> 1.1.0 (#422545)

This commit is contained in:
Martin Weinelt 2025-07-05 00:54:28 +02:00 committed by GitHub
commit 162aab245e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -16,14 +16,14 @@
buildPythonPackage rec {
pname = "joserfc";
version = "1.0.1";
version = "1.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "authlib";
repo = "joserfc";
tag = version;
hash = "sha256-e7c1reeAo+3dyNuDRXPlzxOwWQbAcHe+bSRVlvSW2rw=";
hash = "sha256-95xtUzzIxxvDtpHX/5uCHnTQTB8Fc08DZGUOR/SdKLs=";
};
build-system = [ setuptools ];
@ -39,6 +39,7 @@ buildPythonPackage rec {
pythonImportsCheck = [ "joserfc" ];
meta = with lib; {
changelog = "https://github.com/authlib/joserfc/blob/${src.tag}/docs/changelog.rst";
description = "Implementations of JOSE RFCs in Python";
homepage = "https://github.com/authlib/joserfc";
license = licenses.bsd3;