about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aioesphomeapi
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2021-09-09 20:02:36 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2021-09-09 20:02:36 +0200
commit162b7df84006c23a920f40f2dae687804e991610 (patch)
tree40a0465f4c28006186f4331cf064159647b66eb0 /pkgs/development/python-modules/aioesphomeapi
parent854383465fec4ca627e55b0911c6fa2cead1a4eb (diff)
python3Packages.aioesphomeapi: 8.0.0 -> 9.0.0
Diffstat (limited to 'pkgs/development/python-modules/aioesphomeapi')
-rw-r--r--pkgs/development/python-modules/aioesphomeapi/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/aioesphomeapi/default.nix b/pkgs/development/python-modules/aioesphomeapi/default.nix
index 4e90ea115c6ff..51ba773d8b2d6 100644
--- a/pkgs/development/python-modules/aioesphomeapi/default.nix
+++ b/pkgs/development/python-modules/aioesphomeapi/default.nix
@@ -2,6 +2,7 @@
 , buildPythonPackage
 , fetchFromGitHub
 , mock
+, noiseprotocol
 , protobuf
 , pytest-asyncio
 , pytestCheckHook
@@ -11,7 +12,7 @@
 
 buildPythonPackage rec {
   pname = "aioesphomeapi";
-  version = "8.0.0";
+  version = "9.0.0";
   format = "setuptools";
 
   disabled = pythonOlder "3.7";
@@ -20,10 +21,11 @@ buildPythonPackage rec {
     owner = "esphome";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-fd77sbtgEhExV/d/LHkF9sheVz7G2SrNXyZsMNeJ4UY=";
+    sha256 = "sha256-Z5PebH/x53lo62sHjBH/6H05UhXax3sVfYx5T0uw38s=";
   };
 
   propagatedBuildInputs = [
+    noiseprotocol
     protobuf
     zeroconf
   ];