Unverified Commit 249b6eca authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

python312Packages.linode-api: fix dependencies and tests (#337909)

parents 64194797 5a8609b1
Loading
Loading
Loading
Loading
+13 −2
Original line number Diff line number Diff line
@@ -5,8 +5,10 @@
  pythonOlder,
  setuptools,
  requests,
  polling,
  pytestCheckHook,
  mock,
  httpretty,
}:

buildPythonPackage rec {
@@ -26,11 +28,20 @@ buildPythonPackage rec {

  nativeBuildInputs = [ setuptools ];

  propagatedBuildInputs = [ requests ];
  propagatedBuildInputs = [
    requests
    polling
  ];

  nativeCheckInputs = [
    mock
    pytestCheckHook
    mock
    httpretty
  ];

  disabledTestPaths = [
    # needs api token
    "test/integration"
  ];

  pythonImportsCheck = [ "linode_api4" ];