Merge pull request #68848 from WilliButz/fix-hass-esphome

pythonPackages.aioesphomeapi: 2.0.1 -> 2.2.0
This commit is contained in:
Linus Heckemann 2019-09-16 11:51:59 +02:00 committed by GitHub
commit 872122af43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,13 +2,13 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "aioesphomeapi"; pname = "aioesphomeapi";
version = "2.0.1"; version = "2.2.0";
disabled = !isPy3k; disabled = !isPy3k;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "db09e34dfc148279f303481c7da94b84c9b1442a41794f039c31253e81a58ffb"; sha256 = "0znal1hi964acc8bl3z0ikscax7zziks838ld099rjsbffjwmwn5";
}; };
propagatedBuildInputs = [ attrs protobuf zeroconf ]; propagatedBuildInputs = [ attrs protobuf zeroconf ];
@ -18,7 +18,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Python Client for ESPHome native API"; description = "Python Client for ESPHome native API";
homepage = https://github.com/esphome/aioesphomeapi; homepage = "https://github.com/esphome/aioesphomeapi";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ dotlambda ]; maintainers = with maintainers; [ dotlambda ];