Merge pull request #288048 from ocfox/auth0-python

python311Packages.auth0-python: fix build
This commit is contained in:
Peder Bergebakken Sundt 2024-04-06 20:16:03 +02:00 committed by GitHub
commit 6c884064d1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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"