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-02-15 15:24:01 +00:00
|
|
|
version = "2.6.5";
|
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;
|
2021-02-15 15:24:01 +00:00
|
|
|
sha256 = "sha256-inktluPKefrFQCF2yadvHwT9Rw+pJLw8pjdUc35IJoc=";
|
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
|
|
|
}
|