python311Packages.auth0-python: fix build

This commit is contained in:
ocfox 2024-02-11 22:29:22 +08:00
parent 0dc186716d
commit 6f4b02cd8d
No known key found for this signature in database
1 changed files with 6 additions and 0 deletions

View File

@ -12,6 +12,7 @@
, pyopenssl
, pytestCheckHook
, pythonOlder
, pythonRelaxDepsHook
, requests
, urllib3
}:
@ -33,6 +34,7 @@ buildPythonPackage rec {
nativeBuildInputs = [
poetry-core
poetry-dynamic-versioning
pythonRelaxDepsHook
];
propagatedBuildInputs = [
@ -52,6 +54,10 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonRelaxDeps = [
"cryptography"
];
disabledTests = [
# Tries to ping websites (e.g. google.com)
"can_timeout"