Merge pull request #247673 from fabaff/authlib-bump

python311Packages.authlib: 1.2.0 -> 1.2.1
This commit is contained in:
Fabian Affolter 2023-08-07 23:35:21 +02:00 committed by GitHub
commit 00345950f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,7 +17,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "authlib"; pname = "authlib";
version = "1.2.0"; version = "1.2.1";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
@ -26,7 +26,7 @@ buildPythonPackage rec {
owner = "lepture"; owner = "lepture";
repo = "authlib"; repo = "authlib";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-OYfvfPnpWE9g7L9cFXUD95B/9+OZy55ZVbmFhFgguUg="; hash = "sha256-K6u590poZ9C3Uzi3a8k8aXMeSeRgn91e+p2PWYno3Y8=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -49,6 +49,7 @@ buildPythonPackage rec {
pythonImportsCheck = [ pythonImportsCheck = [
"authlib" "authlib"
]; ];
disabledTestPaths = [ disabledTestPaths = [
# Django tests require a running instance # Django tests require a running instance
"tests/django/" "tests/django/"
@ -60,7 +61,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Library for building OAuth and OpenID Connect servers"; description = "Library for building OAuth and OpenID Connect servers";
homepage = "https://github.com/lepture/authlib"; homepage = "https://github.com/lepture/authlib";
changelog = "https://github.com/lepture/authlib/releases/tag/v${version}"; changelog = "https://github.com/lepture/authlib/blob/v${version}/docs/changelog.rst";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ flokli ]; maintainers = with maintainers; [ flokli ];
}; };