python3Packages.zha-quirks: 0.0.54 -> 0.0.55
This commit is contained in:
parent
6373ef78c6
commit
010677db15
1 changed files with 16 additions and 7 deletions
|
@ -1,25 +1,34 @@
|
||||||
{ lib
|
{ lib
|
||||||
|
, aiohttp
|
||||||
|
, asynctest
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, aiohttp
|
|
||||||
, zigpy
|
|
||||||
, asynctest
|
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
|
, zigpy
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "zha-quirks";
|
pname = "zha-quirks";
|
||||||
version = "0.0.54";
|
version = "0.0.55";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "zigpy";
|
owner = "zigpy";
|
||||||
repo = "zha-device-handlers";
|
repo = "zha-device-handlers";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1xc4rky9x2n15rsb18vyg4lb2897k14gkz03khgf8gp37bg2dk5h";
|
sha256 = "sha256-mc7mOaxn2FCvwYv9yE0mIOSQ1F+xJJ+1LynOdEV07I8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ aiohttp zigpy ];
|
propagatedBuildInputs = [
|
||||||
checkInputs = [ pytestCheckHook asynctest ];
|
aiohttp
|
||||||
|
zigpy
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
asynctest
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "zhaquirks" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "ZHA Device Handlers are custom quirks implementations for Zigpy";
|
description = "ZHA Device Handlers are custom quirks implementations for Zigpy";
|
||||||
|
|
Loading…
Reference in a new issue