lol

python310Packages.aqualogic: 3.3 -> 3.4

+4 -4
+4 -4
pkgs/development/python-modules/aqualogic/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "aqualogic"; 12 - version = "3.3"; 12 + version = "3.4"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "swilson"; 16 16 repo = pname; 17 17 rev = version; 18 - hash = "sha256-6YvkSUtBc3Nl/Ap3LjU0IKY2bE4k86XdSoLo+/c8dDs="; 18 + hash = "sha256-hBg02Wypd+MyqM2SUD53djhm5OMP2QAmsp8Stf+UT2c="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [ 22 + aiohttp 22 23 pyserial 23 24 websockets 24 25 ]; 25 26 26 27 nativeCheckInputs = [ 27 - aiohttp 28 28 pytestCheckHook 29 29 ]; 30 30 31 - # With 3.3 the event loop is not terminated after the first test 31 + # With 3.4 the event loop is not terminated after the first test 32 32 # https://github.com/swilson/aqualogic/issues/9 33 33 doCheck = false; 34 34