From bc35d8dce2d9bef43938a1f3c00a75ca3f25b49a Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 18 Apr 2023 08:46:31 +0200 Subject: [PATCH] python310Packages.aqualogic: 3.3 -> 3.4 --- pkgs/development/python-modules/aqualogic/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/aqualogic/default.nix b/pkgs/development/python-modules/aqualogic/default.nix index 8a6037213f7e..9b904033b7c6 100644 --- a/pkgs/development/python-modules/aqualogic/default.nix +++ b/pkgs/development/python-modules/aqualogic/default.nix @@ -9,26 +9,26 @@ buildPythonPackage rec { pname = "aqualogic"; - version = "3.3"; + version = "3.4"; src = fetchFromGitHub { owner = "swilson"; repo = pname; rev = version; - hash = "sha256-6YvkSUtBc3Nl/Ap3LjU0IKY2bE4k86XdSoLo+/c8dDs="; + hash = "sha256-hBg02Wypd+MyqM2SUD53djhm5OMP2QAmsp8Stf+UT2c="; }; propagatedBuildInputs = [ + aiohttp pyserial websockets ]; nativeCheckInputs = [ - aiohttp pytestCheckHook ]; - # With 3.3 the event loop is not terminated after the first test + # With 3.4 the event loop is not terminated after the first test # https://github.com/swilson/aqualogic/issues/9 doCheck = false;