python3Packages.auth0-python: add format

This commit is contained in:
Fabian Affolter 2022-02-19 15:34:34 +01:00 committed by GitHub
parent 4a7af7ef37
commit c71d325d7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,6 +10,9 @@
buildPythonPackage rec {
pname = "auth0-python";
version = "3.20.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
@ -33,7 +36,9 @@ buildPythonPackage rec {
"test_options_are_used_and_override"
];
pythonImportsCheck = [ "auth0" ];
pythonImportsCheck = [
"auth0"
];
meta = with lib; {
description = "Auth0 Python SDK";