6ae7ad3cc5
GitOrigin-RevId: a322b32e9d74fb476944ff6cfb55833dc69cfaaa
24 lines
641 B
Nix
24 lines
641 B
Nix
{ stdenv, buildPythonPackage, fetchPypi
|
|
, aiohttp, zigpy
|
|
, pytest }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zha-quirks";
|
|
version = "0.0.45";
|
|
|
|
nativeBuildInputs = [ pytest ];
|
|
buildInputs = [ aiohttp zigpy ];
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "9f0640d2844939118c631d88df18d78adfa17d01cac3e04d7156e5f99e41bc7d";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|