python3Packages.zha-quirks: init 0.0.28
This commit is contained in:
parent
3cdaa84b2b
commit
5bbd8dc332
24
pkgs/development/python-modules/zha-quirks/default.nix
Normal file
24
pkgs/development/python-modules/zha-quirks/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user