python312Packages.asana: disable tests which require network access

- add missing input
This commit is contained in:
Fabian Affolter
2024-08-12 09:05:40 +02:00
parent ab16e26085
commit 9aa656a865
@@ -1,14 +1,15 @@
{
lib,
buildPythonPackage,
certifi,
fetchFromGitHub,
pytestCheckHook,
python-dateutil,
python-dotenv,
pythonOlder,
setuptools,
certifi,
six,
python-dateutil,
urllib3,
pytestCheckHook,
}:
buildPythonPackage rec {
@@ -31,6 +32,7 @@ buildPythonPackage rec {
certifi
six
python-dateutil
python-dotenv
urllib3
];
@@ -38,6 +40,11 @@ buildPythonPackage rec {
pythonImportsCheck = [ "asana" ];
disabledTestPaths = [
# Tests require network access
"build_tests/"
];
meta = with lib; {
description = "Python client library for Asana";
homepage = "https://github.com/asana/python-asana";