python3Packages.zha-quirks: init 0.0.28

This commit is contained in:
Elis Hirwing
2019-11-29 20:23:45 +01:00
parent 3cdaa84b2b
commit 5bbd8dc332
2 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
{ stdenv, buildPythonPackage, fetchPypi
, aiohttp, zigpy
, pytest }:
buildPythonPackage rec {
pname = "zha-quirks";
version = "0.0.28";
nativeBuildInputs = [ pytest ];
buildInputs = [ aiohttp zigpy ];
src = fetchPypi {
inherit pname version;
sha256 = "021z5f5dm74amxkqnz4s1690ydprciqg23jz3n4mpjlxyxbdfj73";
};
meta = with stdenv.lib; {
description = "ZHA Device Handlers are custom quirks implementations for Zigpy";
homepage = "https://github.com/dmulcahey/zha-device-handlers";
license = licenses.asl20;
maintainers = with maintainers; [ etu ];
platforms = platforms.linux;
};
}