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 18 buildPythonPackage rec { 19 pname = "bellows"; 20 - version = "0.28.0"; 21 22 src = fetchFromGitHub { 23 owner = "zigpy"; 24 repo = "bellows"; 25 rev = version; 26 - sha256 = "sha256-j1vS6PDvvuJapECn0lKGuBkYwWsyzJaTZDRQPjMsuLk="; 27 }; 28 29 propagatedBuildInputs = [ ··· 43 pytest-timeout 44 ] ++ lib.optionals (pythonOlder "3.8") [ 45 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 ]; 53 54 pythonImportsCheck = [
··· 17 18 buildPythonPackage rec { 19 pname = "bellows"; 20 + version = "0.29.0"; 21 + format = "setuptools"; 22 23 src = fetchFromGitHub { 24 owner = "zigpy"; 25 repo = "bellows"; 26 rev = version; 27 + sha256 = "sha256-coIrI3C6Wnn8Of/IHAlvZgkcBBf9OBQt5Ir6YOXCf0c="; 28 }; 29 30 propagatedBuildInputs = [ ··· 44 pytest-timeout 45 ] ++ lib.optionals (pythonOlder "3.8") [ 46 asynctest 47 ]; 48 49 pythonImportsCheck = [
+21 -7
pkgs/development/python-modules/zigpy-deconz/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 , pyserial 5 , pyserial-asyncio 6 , zigpy 7 - , pytestCheckHook 8 - , pytest-asyncio 9 - , asynctest 10 }: 11 12 buildPythonPackage rec { 13 pname = "zigpy-deconz"; 14 - version = "0.13.0"; 15 16 src = fetchFromGitHub { 17 owner = "zigpy"; 18 repo = pname; 19 rev = version; 20 - sha256 = "sha256-9rxdnY5tMtPJLE/lRaphNR1L1vdhAxnIDoh8xCHmzjc="; 21 }; 22 23 - propagatedBuildInputs = [ pyserial pyserial-asyncio zigpy ]; 24 - checkInputs = [ pytestCheckHook pytest-asyncio asynctest ]; 25 26 meta = with lib; { 27 description = "Library which communicates with Deconz radios for zigpy";
··· 1 { lib 2 + , asynctest 3 , buildPythonPackage 4 , fetchFromGitHub 5 , pyserial 6 , pyserial-asyncio 7 + , pytest-asyncio 8 + , pytestCheckHook 9 , zigpy 10 }: 11 12 buildPythonPackage rec { 13 pname = "zigpy-deconz"; 14 + version = "0.14.0"; 15 + format = "setuptools"; 16 17 src = fetchFromGitHub { 18 owner = "zigpy"; 19 repo = pname; 20 rev = version; 21 + sha256 = "sha256-PctS09twk8SRK3pTJvQU8drsqhmrPnMge2WO+VY84U8="; 22 }; 23 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 + ]; 39 40 meta = with lib; { 41 description = "Library which communicates with Deconz radios for zigpy";