Merge pull request #118249 from fabaff/bump-zha-quirks

python3Packages.zha-quirks: 0.0.54 -> 0.0.55
This commit is contained in:
Martin Weinelt 2021-04-01 15:56:31 +02:00 committed by GitHub
commit a103da97e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,25 +1,34 @@
{ lib
, aiohttp
, asynctest
, buildPythonPackage
, fetchFromGitHub
, aiohttp
, zigpy
, asynctest
, pytestCheckHook
, zigpy
}:
buildPythonPackage rec {
pname = "zha-quirks";
version = "0.0.54";
version = "0.0.55";
src = fetchFromGitHub {
owner = "zigpy";
repo = "zha-device-handlers";
rev = version;
sha256 = "1xc4rky9x2n15rsb18vyg4lb2897k14gkz03khgf8gp37bg2dk5h";
sha256 = "sha256-mc7mOaxn2FCvwYv9yE0mIOSQ1F+xJJ+1LynOdEV07I8=";
};
propagatedBuildInputs = [ aiohttp zigpy ];
checkInputs = [ pytestCheckHook asynctest ];
propagatedBuildInputs = [
aiohttp
zigpy
];
checkInputs = [
asynctest
pytestCheckHook
];
pythonImportsCheck = [ "zhaquirks" ];
meta = with lib; {
description = "ZHA Device Handlers are custom quirks implementations for Zigpy";