python311Packages.auth0-python: 4.4.0 -> 4.4.2

Changelog: https://github.com/auth0/auth0-python/blob/4.4.2/CHANGELOG.md
This commit is contained in:
Fabian Affolter 2023-10-03 09:14:48 +02:00
parent 49dd200502
commit 9e1fa44a44

View file

@ -3,7 +3,7 @@
, aioresponses , aioresponses
, buildPythonPackage , buildPythonPackage
, callee , callee
, fetchPypi , fetchFromGitHub
, mock , mock
, pyjwt , pyjwt
, pytestCheckHook , pytestCheckHook
@ -13,14 +13,16 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "auth0-python"; pname = "auth0-python";
version = "4.4.0"; version = "4.4.2";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchFromGitHub {
inherit pname version; owner = "auth0";
hash = "sha256-Yf8/NmQygdikQXv9sUukQEKKd+FcpSPnGbbi8kzVyLo="; repo = "auth0-python";
rev = "refs/tags/${version}";
hash = "sha256-RBkAuZQx7mBxVCpo5PoBiEge8+yTmp0XpcnxCkOsM6U=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [