11 poetry-dynamic-versioning,
20 buildPythonPackage rec {
21 pname = "auth0-python";
25 disabled = pythonOlder "3.8";
27 src = fetchFromGitHub {
29 repo = "auth0-python";
30 rev = "refs/tags/${version}";
31 hash = "sha256-g6sbxPglKDGbDMiB9crnua86y6TPIbLiFddeymrLAP0=";
36 poetry-dynamic-versioning
39 propagatedBuildInputs = [
46 ] ++ pyjwt.optional-dependencies.crypto;
56 pythonRelaxDeps = [ "cryptography" ];
59 # Tries to ping websites (e.g. google.com)
61 "test_options_are_created_by_default"
62 "test_options_are_used_and_override"
65 pythonImportsCheck = [ "auth0" ];
68 description = "Auth0 Python SDK";
69 homepage = "https://github.com/auth0/auth0-python";
70 changelog = "https://github.com/auth0/auth0-python/blob/${version}/CHANGELOG.md";
71 license = licenses.mit;