about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLinus Heckemann <git@sphalerite.org>2019-09-16 11:51:59 +0200
committerGitHub <noreply@github.com>2019-09-16 11:51:59 +0200
commit872122af438899db825c7f7fbec8879372c7357e (patch)
treeb06e0a9acc3bbf4230c97cf36143935384b5dcec
parentdb21aabe155a3582e3c84d646df649cc877814c2 (diff)
parent7dfd313a3d28dae7b49db615ca52aa4d35dd7cce (diff)
downloadnixlib-872122af438899db825c7f7fbec8879372c7357e.tar
nixlib-872122af438899db825c7f7fbec8879372c7357e.tar.gz
nixlib-872122af438899db825c7f7fbec8879372c7357e.tar.bz2
nixlib-872122af438899db825c7f7fbec8879372c7357e.tar.lz
nixlib-872122af438899db825c7f7fbec8879372c7357e.tar.xz
nixlib-872122af438899db825c7f7fbec8879372c7357e.tar.zst
nixlib-872122af438899db825c7f7fbec8879372c7357e.zip
Merge pull request #68848 from WilliButz/fix-hass-esphome
pythonPackages.aioesphomeapi: 2.0.1 -> 2.2.0
-rw-r--r--pkgs/development/python-modules/aioesphomeapi/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/aioesphomeapi/default.nix b/pkgs/development/python-modules/aioesphomeapi/default.nix
index 0afb1c432d6b..8d8467207ce1 100644
--- a/pkgs/development/python-modules/aioesphomeapi/default.nix
+++ b/pkgs/development/python-modules/aioesphomeapi/default.nix
@@ -2,13 +2,13 @@
 
 buildPythonPackage rec {
   pname = "aioesphomeapi";
-  version = "2.0.1";
+  version = "2.2.0";
 
   disabled = !isPy3k;
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "db09e34dfc148279f303481c7da94b84c9b1442a41794f039c31253e81a58ffb";
+    sha256 = "0znal1hi964acc8bl3z0ikscax7zziks838ld099rjsbffjwmwn5";
   };
 
   propagatedBuildInputs = [ attrs protobuf zeroconf ];
@@ -18,7 +18,7 @@ buildPythonPackage rec {
 
   meta = with lib; {
     description = "Python Client for ESPHome native API";
-    homepage = https://github.com/esphome/aioesphomeapi;
+    homepage = "https://github.com/esphome/aioesphomeapi";
     license = licenses.mit;
     maintainers = with maintainers; [ dotlambda ];