python3Packages.joserfc: 1.0.1 -> 1.1.0

https://github.com/authlib/joserfc/blob/1.1.0/docs/changelog.rst
This commit is contained in:
Martin Weinelt 2025-07-05 00:31:27 +02:00
parent 326447983d
commit 4acf8b59ab
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

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