Unverified Commit fed5bd07 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #258743 from fabaff/auth0-python-bump

python311Packages.auth0-python: 4.4.0 -> 4.4.2
parents 40cfcd06 9e1fa44a
Loading
Loading
Loading
Loading
+7 −5
Original line number Diff line number Diff line
@@ -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 = [