From 44d3593301c25de24d9acad3dc4473bd8ed1322c Mon Sep 17 00:00:00 2001 From: Ethan Carter Edwards Date: Thu, 15 Jan 2026 13:36:51 -0500 Subject: [PATCH 1/2] python3Packages.pydo: 0.23.0 -> 0.24.0 Changelog: https://github.com/digitalocean/pydo/releases/tag/v0.24.0 Signed-off-by: Ethan Carter Edwards --- pkgs/development/python-modules/pydo/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pydo/default.nix b/pkgs/development/python-modules/pydo/default.nix index 6b681ee26615..c4d218ad6f9d 100644 --- a/pkgs/development/python-modules/pydo/default.nix +++ b/pkgs/development/python-modules/pydo/default.nix @@ -15,14 +15,14 @@ buildPythonPackage rec { pname = "pydo"; - version = "0.23.0"; + version = "0.24.0"; pyproject = true; src = fetchFromGitHub { owner = "digitalocean"; repo = "pydo"; tag = "v${version}"; - hash = "sha256-wmrth6n6vlYLMMiNYm6p5sS2keEFsnGm9sGjShSsLaA="; + hash = "sha256-IfoW8JaLqghecADPKfVwjW99ZosHFXFt3iQ8WOyrCns="; }; build-system = [ poetry-core ]; From ccca613bb196293493d806789ad125a5e312fa97 Mon Sep 17 00:00:00 2001 From: Ethan Carter Edwards Date: Thu, 15 Jan 2026 13:37:59 -0500 Subject: [PATCH 2/2] 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