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

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

python310Packages.auth0-python: 4.0.0 -> 4.1.1
parents 08fd383a 9ff557ea
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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 ];
  };