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
No known key found for this signature in database
GPG key ID: D57EFA625C9A925F
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;
};
}

View file

@ -5773,6 +5773,8 @@ in {
zfec = callPackage ../development/python-modules/zfec { };
zha-quirks = callPackage ../development/python-modules/zha-quirks { };
zipp = callPackage ../development/python-modules/zipp { };
zope_broken = callPackage ../development/python-modules/zope_broken { };