Merge pull request #147711 from fabaff/bump-zigpy-deconz

python3Packages.bellows: 0.28.0 -> 0.29.0, python3Packages.zigpy-deconz: 0.13.0 -> 0.14.0

authored by Fabian Affolter and committed by GitHub f53a2455 13d5b20a

+24 -15
+3 -8
pkgs/development/python-modules/bellows/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "bellows"; 20 - version = "0.28.0"; 20 + version = "0.29.0"; 21 + format = "setuptools"; 21 22 22 23 src = fetchFromGitHub { 23 24 owner = "zigpy"; 24 25 repo = "bellows"; 25 26 rev = version; 26 - sha256 = "sha256-j1vS6PDvvuJapECn0lKGuBkYwWsyzJaTZDRQPjMsuLk="; 27 + sha256 = "sha256-coIrI3C6Wnn8Of/IHAlvZgkcBBf9OBQt5Ir6YOXCf0c="; 27 28 }; 28 29 29 30 propagatedBuildInputs = [ ··· 43 44 pytest-timeout 44 45 ] ++ lib.optionals (pythonOlder "3.8") [ 45 46 asynctest 46 - ]; 47 - 48 - disabledTests = [ 49 - # AssertionError: assert 65534 is None 50 - # https://github.com/zigpy/bellows/issues/436 51 - "test_startup_nwk_params" 52 47 ]; 53 48 54 49 pythonImportsCheck = [
+21 -7
pkgs/development/python-modules/zigpy-deconz/default.nix
··· 1 1 { lib 2 + , asynctest 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , pyserial 5 6 , pyserial-asyncio 7 + , pytest-asyncio 8 + , pytestCheckHook 6 9 , zigpy 7 - , pytestCheckHook 8 - , pytest-asyncio 9 - , asynctest 10 10 }: 11 11 12 12 buildPythonPackage rec { 13 13 pname = "zigpy-deconz"; 14 - version = "0.13.0"; 14 + version = "0.14.0"; 15 + format = "setuptools"; 15 16 16 17 src = fetchFromGitHub { 17 18 owner = "zigpy"; 18 19 repo = pname; 19 20 rev = version; 20 - sha256 = "sha256-9rxdnY5tMtPJLE/lRaphNR1L1vdhAxnIDoh8xCHmzjc="; 21 + sha256 = "sha256-PctS09twk8SRK3pTJvQU8drsqhmrPnMge2WO+VY84U8="; 21 22 }; 22 23 23 - propagatedBuildInputs = [ pyserial pyserial-asyncio zigpy ]; 24 - checkInputs = [ pytestCheckHook pytest-asyncio asynctest ]; 24 + propagatedBuildInputs = [ 25 + pyserial 26 + pyserial-asyncio 27 + zigpy 28 + ]; 29 + 30 + checkInputs = [ 31 + asynctest 32 + pytest-asyncio 33 + pytestCheckHook 34 + ]; 35 + 36 + pythonImportsCheck = [ 37 + "zigpy_deconz" 38 + ]; 25 39 26 40 meta = with lib; { 27 41 description = "Library which communicates with Deconz radios for zigpy";