python3Packages.zha-quirks: 0.0.54 -> 0.0.55

This commit is contained in:
Fabian Affolter 2021-04-01 15:33:44 +02:00
parent 6373ef78c6
commit 010677db15

View file

@ -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";