2020-04-22 09:46:52 -04:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, mock
|
2021-06-19 14:31:56 -07:00
|
|
|
, pyjwt
|
2020-06-16 13:39:28 -07:00
|
|
|
, pytestCheckHook
|
2021-06-22 09:34:46 +02:00
|
|
|
, requests
|
2020-04-22 09:46:52 -04:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "auth0-python";
|
2022-02-19 12:48:13 +00:00
|
|
|
version = "3.20.0";
|
2020-04-22 09:46:52 -04:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-02-19 12:48:13 +00:00
|
|
|
sha256 = "sha256-WIH2lMPehrqkXCh+JbEI5nf99nt61OwLhP/pF6BbsnQ=";
|
2020-04-22 09:46:52 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
requests
|
2021-06-19 14:31:56 -07:00
|
|
|
pyjwt
|
2020-04-22 09:46:52 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
mock
|
2020-06-16 13:39:28 -07:00
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
|
|
|
disabledTests = [
|
2021-06-22 09:34:46 +02:00
|
|
|
# tries to ping websites (e.g. google.com)
|
2020-06-16 13:39:28 -07:00
|
|
|
"can_timeout"
|
2021-09-23 21:09:56 +02:00
|
|
|
"test_options_are_created_by_default"
|
|
|
|
"test_options_are_used_and_override"
|
2020-04-22 09:46:52 -04:00
|
|
|
];
|
|
|
|
|
2021-06-22 09:34:46 +02:00
|
|
|
pythonImportsCheck = [ "auth0" ];
|
|
|
|
|
2020-04-22 09:46:52 -04:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Auth0 Python SDK";
|
|
|
|
homepage = "https://github.com/auth0/auth0-python";
|
|
|
|
license = licenses.mit;
|
2021-06-22 09:34:46 +02:00
|
|
|
maintainers = with maintainers; [ costrouc ];
|
2020-04-22 09:46:52 -04:00
|
|
|
};
|
|
|
|
}
|