summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2023-04-28 10:16:15 +0200
committerGitHub <noreply@github.com>2023-04-28 10:16:15 +0200
commit8d9c7264719920080eec355feeece3127b3d27f6 (patch)
tree949be7c6057ecad9f36afc601da3facdc430214b
parent08fd383ada3fa749af635a0370dd9e71a6b9be62 (diff)
parent9ff557eaaea77c00c6de660e13614af758abbff5 (diff)
downloadnixpkgs-8d9c7264719920080eec355feeece3127b3d27f6.tar
nixpkgs-8d9c7264719920080eec355feeece3127b3d27f6.tar.gz
nixpkgs-8d9c7264719920080eec355feeece3127b3d27f6.tar.bz2
nixpkgs-8d9c7264719920080eec355feeece3127b3d27f6.tar.lz
nixpkgs-8d9c7264719920080eec355feeece3127b3d27f6.tar.xz
nixpkgs-8d9c7264719920080eec355feeece3127b3d27f6.tar.zst
nixpkgs-8d9c7264719920080eec355feeece3127b3d27f6.zip
Merge pull request #228658 from fabaff/auth0-python-bump
python310Packages.auth0-python: 4.0.0 -> 4.1.1
-rw-r--r--pkgs/development/python-modules/auth0-python/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/auth0-python/default.nix b/pkgs/development/python-modules/auth0-python/default.nix
index 8edbbfb7053..c05b815bfcf 100644
--- a/pkgs/development/python-modules/auth0-python/default.nix
+++ b/pkgs/development/python-modules/auth0-python/default.nix
@@ -13,21 +13,20 @@
 
 buildPythonPackage rec {
   pname = "auth0-python";
-  version = "4.0.0";
+  version = "4.1.1";
   format = "setuptools";
 
   disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-gza5HYtxgmTfC+u+WlBiuOinBNXYIfVBa5IX8lr0Hj8=";
+    hash = "sha256-or9lrvCWBTrbRhKDs12KVIukoeo2T8Sb2sex57DfArc=";
   };
 
   propagatedBuildInputs = [
     requests
     pyjwt
-  ]
-  ++ pyjwt.optional-dependencies.crypto;
+  ] ++ pyjwt.optional-dependencies.crypto;
 
   nativeCheckInputs = [
     aiohttp
@@ -51,6 +50,7 @@ buildPythonPackage rec {
   meta = with lib; {
     description = "Auth0 Python SDK";
     homepage = "https://github.com/auth0/auth0-python";
+    changelog = "https://github.com/auth0/auth0-python/blob/${version}/CHANGELOG.md";
     license = licenses.mit;
     maintainers = with maintainers; [ costrouc ];
   };