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

Changed files
+3 -2
pkgs
development
python-modules
joserfc
+3 -2
pkgs/development/python-modules/joserfc/default.nix
···
buildPythonPackage rec {
pname = "joserfc";
-
version = "1.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "authlib";
repo = "joserfc";
tag = version;
-
hash = "sha256-e7c1reeAo+3dyNuDRXPlzxOwWQbAcHe+bSRVlvSW2rw=";
};
build-system = [ setuptools ];
···
pythonImportsCheck = [ "joserfc" ];
meta = with lib; {
description = "Implementations of JOSE RFCs in Python";
homepage = "https://github.com/authlib/joserfc";
license = licenses.bsd3;
···
buildPythonPackage rec {
pname = "joserfc";
+
version = "1.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "authlib";
repo = "joserfc";
tag = version;
+
hash = "sha256-95xtUzzIxxvDtpHX/5uCHnTQTB8Fc08DZGUOR/SdKLs=";
};
build-system = [ setuptools ];
···
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;