diff options
| author | Fabian Affolter <mail@fabian-affolter.ch> | 2023-10-03 09:14:48 +0200 |
|---|---|---|
| committer | Fabian Affolter <mail@fabian-affolter.ch> | 2023-10-03 09:14:48 +0200 |
| commit | 9e1fa44a44b19840fa9dba34c685c6f102467a96 (patch) | |
| tree | e9f03ee537d276aad954126291136895e4c01f50 /pkgs/development/python-modules/auth0-python | |
| parent | 49dd2005023f21fc6462765b8ef35c59ef1bf0a6 (diff) | |
python311Packages.auth0-python: 4.4.0 -> 4.4.2
Changelog: https://github.com/auth0/auth0-python/blob/4.4.2/CHANGELOG.md
Diffstat (limited to 'pkgs/development/python-modules/auth0-python')
| -rw-r--r-- | pkgs/development/python-modules/auth0-python/default.nix | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/auth0-python/default.nix b/pkgs/development/python-modules/auth0-python/default.nix index 44599435f149..06313ed12ce1 100644 --- a/pkgs/development/python-modules/auth0-python/default.nix +++ b/pkgs/development/python-modules/auth0-python/default.nix @@ -3,7 +3,7 @@ , aioresponses , buildPythonPackage , callee -, fetchPypi +, fetchFromGitHub , mock , pyjwt , pytestCheckHook @@ -13,14 +13,16 @@ buildPythonPackage rec { pname = "auth0-python"; - version = "4.4.0"; + version = "4.4.2"; format = "setuptools"; disabled = pythonOlder "3.7"; - src = fetchPypi { - inherit pname version; - hash = "sha256-Yf8/NmQygdikQXv9sUukQEKKd+FcpSPnGbbi8kzVyLo="; + src = fetchFromGitHub { + owner = "auth0"; + repo = "auth0-python"; + rev = "refs/tags/${version}"; + hash = "sha256-RBkAuZQx7mBxVCpo5PoBiEge8+yTmp0XpcnxCkOsM6U="; }; propagatedBuildInputs = [ |
