depot/third_party/nixpkgs/pkgs/development/python-modules/zha-quirks/default.nix
Default email 6ae7ad3cc5 Project import generated by Copybara.
GitOrigin-RevId: a322b32e9d74fb476944ff6cfb55833dc69cfaaa
2020-11-19 01:13:47 +01:00

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;
};
}