From 87498edc0c23c2ac03dbde05dcf7c2d3e61008b5 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 1 Jun 2022 18:14:14 +0200 Subject: [PATCH] python310Packages.omnikinverter: 0.7.0 -> 0.8.1 --- pkgs/development/python-modules/omnikinverter/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/omnikinverter/default.nix b/pkgs/development/python-modules/omnikinverter/default.nix index a992f14616a3..914267ea86f7 100644 --- a/pkgs/development/python-modules/omnikinverter/default.nix +++ b/pkgs/development/python-modules/omnikinverter/default.nix @@ -1,6 +1,7 @@ { lib , aiohttp , aresponses +, asynctest , buildPythonPackage , fetchFromGitHub , poetry-core @@ -12,7 +13,7 @@ buildPythonPackage rec { pname = "omnikinverter"; - version = "0.7.0"; + version = "0.8.1"; format = "pyproject"; disabled = pythonOlder "3.9"; @@ -21,7 +22,7 @@ buildPythonPackage rec { owner = "klaasnicolaas"; repo = "python-omnikinverter"; rev = "v${version}"; - sha256 = "sha256-IiU7nhwH0Mc6s+g9WtJugpORuL0qGNJFKDY5hvxIZAU="; + hash = "sha256-OQWk+ae+hSLLdH0uLVPauoNeQpXgxkvflXFyaiFe108="; }; nativeBuildInputs = [ @@ -35,6 +36,7 @@ buildPythonPackage rec { checkInputs = [ aresponses + asynctest pytest-asyncio pytestCheckHook ];