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
This commit is contained in:
Fabian Affolter 2021-11-29 09:01:06 +01:00 committed by GitHub
commit f53a245504
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 15 deletions

View file

@ -17,13 +17,14 @@
buildPythonPackage rec {
pname = "bellows";
version = "0.28.0";
version = "0.29.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "zigpy";
repo = "bellows";
rev = version;
sha256 = "sha256-j1vS6PDvvuJapECn0lKGuBkYwWsyzJaTZDRQPjMsuLk=";
sha256 = "sha256-coIrI3C6Wnn8Of/IHAlvZgkcBBf9OBQt5Ir6YOXCf0c=";
};
propagatedBuildInputs = [
@ -45,12 +46,6 @@ buildPythonPackage rec {
asynctest
];
disabledTests = [
# AssertionError: assert 65534 is None
# https://github.com/zigpy/bellows/issues/436
"test_startup_nwk_params"
];
pythonImportsCheck = [
"bellows"
];

View file

@ -1,27 +1,41 @@
{ lib
, asynctest
, buildPythonPackage
, fetchFromGitHub
, pyserial
, pyserial-asyncio
, zigpy
, pytestCheckHook
, pytest-asyncio
, asynctest
, pytestCheckHook
, zigpy
}:
buildPythonPackage rec {
pname = "zigpy-deconz";
version = "0.13.0";
version = "0.14.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "zigpy";
repo = pname;
rev = version;
sha256 = "sha256-9rxdnY5tMtPJLE/lRaphNR1L1vdhAxnIDoh8xCHmzjc=";
sha256 = "sha256-PctS09twk8SRK3pTJvQU8drsqhmrPnMge2WO+VY84U8=";
};
propagatedBuildInputs = [ pyserial pyserial-asyncio zigpy ];
checkInputs = [ pytestCheckHook pytest-asyncio asynctest ];
propagatedBuildInputs = [
pyserial
pyserial-asyncio
zigpy
];
checkInputs = [
asynctest
pytest-asyncio
pytestCheckHook
];
pythonImportsCheck = [
"zigpy_deconz"
];
meta = with lib; {
description = "Library which communicates with Deconz radios for zigpy";