about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2023-08-07 23:35:21 +0200
committerGitHub <noreply@github.com>2023-08-07 23:35:21 +0200
commit00345950f6e70af77e779531a441b23e80c6941e (patch)
tree41095abecc2a6723b1510c8d495a38e8276e50f0 /pkgs
parenta73f02192d1738393580ac82f5d0e14adb4c6185 (diff)
parent2f670c3a82a2564e1eab77120726ca03f2bafd73 (diff)
downloadnixlib-00345950f6e70af77e779531a441b23e80c6941e.tar
nixlib-00345950f6e70af77e779531a441b23e80c6941e.tar.gz
nixlib-00345950f6e70af77e779531a441b23e80c6941e.tar.bz2
nixlib-00345950f6e70af77e779531a441b23e80c6941e.tar.lz
nixlib-00345950f6e70af77e779531a441b23e80c6941e.tar.xz
nixlib-00345950f6e70af77e779531a441b23e80c6941e.tar.zst
nixlib-00345950f6e70af77e779531a441b23e80c6941e.zip
Merge pull request #247673 from fabaff/authlib-bump
python311Packages.authlib: 1.2.0 -> 1.2.1
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/authlib/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/authlib/default.nix b/pkgs/development/python-modules/authlib/default.nix
index eb65881afbb6..325fe6c0894a 100644
--- a/pkgs/development/python-modules/authlib/default.nix
+++ b/pkgs/development/python-modules/authlib/default.nix
@@ -17,7 +17,7 @@
 
 buildPythonPackage rec {
   pname = "authlib";
-  version = "1.2.0";
+  version = "1.2.1";
   format = "setuptools";
 
   disabled = pythonOlder "3.7";
@@ -26,7 +26,7 @@ buildPythonPackage rec {
     owner = "lepture";
     repo = "authlib";
     rev = "refs/tags/v${version}";
-    hash = "sha256-OYfvfPnpWE9g7L9cFXUD95B/9+OZy55ZVbmFhFgguUg=";
+    hash = "sha256-K6u590poZ9C3Uzi3a8k8aXMeSeRgn91e+p2PWYno3Y8=";
   };
 
   propagatedBuildInputs = [
@@ -49,6 +49,7 @@ buildPythonPackage rec {
   pythonImportsCheck = [
     "authlib"
   ];
+
   disabledTestPaths = [
     # Django tests require a running instance
     "tests/django/"
@@ -60,7 +61,7 @@ buildPythonPackage rec {
   meta = with lib; {
     description = "Library for building OAuth and OpenID Connect servers";
     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;
     maintainers = with maintainers; [ flokli ];
   };