mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 16:15:30 +00:00
25 lines
629 B
Nix
25 lines
629 B
Nix
{ 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;
|
|
};
|
|
}
|