lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.aqualogic: 2.6 -> 3.3

authored by

Fabian Affolter and committed by
Jonathan Ringer
ce35e285 50434b9f

+14 -11
+14 -11
pkgs/development/python-modules/aqualogic/default.nix
··· 1 1 { lib 2 + , aiohttp 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 - , fetchpatch 5 5 , pyserial 6 6 , pytestCheckHook 7 + , websockets 7 8 }: 8 9 9 10 buildPythonPackage rec { 10 11 pname = "aqualogic"; 11 - version = "2.6"; 12 + version = "3.3"; 12 13 13 14 src = fetchFromGitHub { 14 15 owner = "swilson"; 15 16 repo = pname; 16 17 rev = version; 17 - sha256 = "sha256-dAC/0OjvrC8J/5pu5vcOKV/WqgkAlz0LuFl0up6FQRM="; 18 + sha256 = "sha256-6YvkSUtBc3Nl/Ap3LjU0IKY2bE4k86XdSoLo+/c8dDs="; 18 19 }; 19 20 20 - patches = [ 21 - (fetchpatch { 22 - name = "allow-iobase-objects.patch"; 23 - url = "https://github.com/swilson/aqualogic/commit/185fe25a86c82c497a55c78914b55ed39f5ca339.patch"; 24 - sha256 = "072jrrsqv86bn3skibjc57111jlpm8pq2503997fl3h4v6ziwdxg"; 25 - }) 21 + propagatedBuildInputs = [ 22 + pyserial 23 + websockets 26 24 ]; 27 25 28 - propagatedBuildInputs = [ pyserial ]; 26 + checkInputs = [ 27 + aiohttp 28 + pytestCheckHook 29 + ]; 29 30 30 - checkInputs = [ pytestCheckHook ]; 31 + # With 3.3 the event loop is not terminated after the first test 32 + # https://github.com/swilson/aqualogic/issues/9 33 + doCheck = false; 31 34 32 35 pythonImportsCheck = [ "aqualogic" ]; 33 36