python3.pkgs.aioesphomeapi: add meta

This commit is contained in:
Robert Schütz 2019-04-04 08:47:11 +02:00 committed by Robin Gloster
parent d30b1b0938
commit 48dfb96cca

View file

@ -1,4 +1,4 @@
{ buildPythonPackage, fetchPypi, attrs, protobuf, zeroconf }:
{ lib, buildPythonPackage, fetchPypi, attrs, protobuf, zeroconf }:
buildPythonPackage rec {
pname = "aioesphomeapi";
@ -11,5 +11,13 @@ buildPythonPackage rec {
propagatedBuildInputs = [ attrs protobuf zeroconf ];
meta = {};
# no tests implemented
doCheck = false;
meta = with lib; {
description = "Python Client for ESPHome native API";
homepage = https://github.com/esphome/aioesphomeapi;
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}