2019-11-29 11:23:45 -08:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
|
|
|
, aiohttp, zigpy
|
|
|
|
, pytest }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "zha-quirks";
|
2020-07-31 01:56:49 -07:00
|
|
|
version = "0.0.42";
|
2019-11-29 11:23:45 -08:00
|
|
|
|
|
|
|
nativeBuildInputs = [ pytest ];
|
|
|
|
buildInputs = [ aiohttp zigpy ];
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-07-31 01:56:49 -07:00
|
|
|
sha256 = "7b9c6217054b9c49bfe249fa38d993490e901ab29f198022d569e3505e6c7f20";
|
2019-11-29 11:23:45 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|