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