2021-01-16 12:59:24 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, isPy3k, attrs, protobuf, zeroconf }:
|
2019-04-01 16:25:50 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "aioesphomeapi";
|
2021-01-16 12:59:24 +00:00
|
|
|
version = "2.6.4";
|
2019-04-22 22:35:37 +01:00
|
|
|
|
|
|
|
disabled = !isPy3k;
|
2019-04-01 16:25:50 +01:00
|
|
|
|
2021-01-16 12:59:24 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "d8def7a909c0471479e1d8b0965de6bb7644b8de315d6e578f9d848b8a6812d0";
|
2019-04-01 16:25:50 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ attrs protobuf zeroconf ];
|
|
|
|
|
2019-04-04 07:47:11 +01:00
|
|
|
# no tests implemented
|
|
|
|
doCheck = false;
|
|
|
|
|
2020-08-29 19:27:03 +01:00
|
|
|
pythonImportsCheck = [ "aioesphomeapi" ];
|
|
|
|
|
2019-04-04 07:47:11 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Python Client for ESPHome native API";
|
2019-09-15 16:21:04 +01:00
|
|
|
homepage = "https://github.com/esphome/aioesphomeapi";
|
2019-04-04 07:47:11 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
|
|
};
|
2019-04-01 16:25:50 +01:00
|
|
|
}
|