From d90fa1da7075d2ff72422f0edb16eac74734af61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Fri, 15 May 2026 18:39:58 -0700 Subject: [PATCH] python3Packages.aioharmony: 0.5.3 -> 1.0.3 Diff: https://github.com/Harmony-Libs/aioharmony/compare/v0.5.3...v1.0.3 --- pkgs/development/python-modules/aioharmony/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/aioharmony/default.nix b/pkgs/development/python-modules/aioharmony/default.nix index 099581a01cf1..be5857afbb37 100644 --- a/pkgs/development/python-modules/aioharmony/default.nix +++ b/pkgs/development/python-modules/aioharmony/default.nix @@ -4,6 +4,7 @@ async-timeout, buildPythonPackage, fetchFromGitHub, + pytest-asyncio, pytest-cov-stub, pytestCheckHook, setuptools, @@ -12,14 +13,14 @@ buildPythonPackage rec { pname = "aioharmony"; - version = "0.5.3"; + version = "1.0.3"; pyproject = true; src = fetchFromGitHub { owner = "Harmony-Libs"; repo = "aioharmony"; tag = "v${version}"; - hash = "sha256-H5zVY7LvTP8/CQtUGtXCXxOfG8GFQgdp7BY8jl9X+Gc="; + hash = "sha256-163L2ilmfMRL6qsD4RgWEX3kdKK6rnvjw9c78vKBtuE="; }; build-system = [ setuptools ]; @@ -31,6 +32,7 @@ buildPythonPackage rec { ]; nativeCheckInputs = [ + pytest-asyncio pytest-cov-stub pytestCheckHook ];