From ccca613bb196293493d806789ad125a5e312fa97 Mon Sep 17 00:00:00 2001 From: Ethan Carter Edwards Date: Thu, 15 Jan 2026 13:37:59 -0500 Subject: [PATCH] python3Packages.pydo: fix deps and check inputs Suggested-by: dotlambda Signed-off-by: Ethan Carter Edwards --- pkgs/development/python-modules/pydo/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/pydo/default.nix b/pkgs/development/python-modules/pydo/default.nix index c4d218ad6f9d..18dad347f5c4 100644 --- a/pkgs/development/python-modules/pydo/default.nix +++ b/pkgs/development/python-modules/pydo/default.nix @@ -3,14 +3,14 @@ buildPythonPackage, fetchFromGitHub, poetry-core, - aioresponses, azure-core, azure-identity, isodate, msrest, - responses, - pytestCheckHook, + aioresponses, pytest-asyncio, + pytestCheckHook, + responses, }: buildPythonPackage rec { @@ -28,19 +28,19 @@ buildPythonPackage rec { build-system = [ poetry-core ]; dependencies = [ - aioresponses azure-core azure-identity isodate msrest - responses ]; pythonImportsCheck = [ "pydo" ]; nativeCheckInputs = [ - pytestCheckHook + aioresponses pytest-asyncio + pytestCheckHook + responses ]; # integration tests require hitting the live api with a