Commit 9aa656a8 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.asana: disable tests which require network access

- add missing input
parent ab16e260
Loading
Loading
Loading
Loading
+10 −3
Original line number Diff line number Diff line
{
  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";