about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aioesphomeapi/default.nix
blob: 80c85a2614cad3e2b6dfb609359bda3294cc339c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, buildPythonPackage, fetchPypi, attrs, protobuf, zeroconf }:

buildPythonPackage rec {
  pname = "aioesphomeapi";
  version = "1.8.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "16ywa7yggmsx8m2r9azdq7w9fxjh736g1vd1aibgh24g7srhwwhj";
  };

  propagatedBuildInputs = [ attrs protobuf zeroconf ];

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