mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 08:36:41 +01:00
python3.pkgs.aioesphomeapi: add meta
This commit is contained in:
parent
d30b1b0938
commit
48dfb96cca
1 changed files with 10 additions and 2 deletions
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue