about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-04-28 21:07:40 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-04-28 21:37:47 +0200
commitd5edd07a01397450e9faebf6a68adb01330364fa (patch)
treea422eeaf8e31aa394570dceaa2e95facdbf1fd62
parent33dfdf82039d0e8fa4663b097d69d30d19e8b3f5 (diff)
python310Packages.aioesphomeapi: Propagate protobuf dev output
Required for aioesphomeapi to be usable in makePythonPath.
-rw-r--r--pkgs/development/python-modules/aioesphomeapi/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/aioesphomeapi/default.nix b/pkgs/development/python-modules/aioesphomeapi/default.nix
index bee7cc393321a..d9f02f883e34e 100644
--- a/pkgs/development/python-modules/aioesphomeapi/default.nix
+++ b/pkgs/development/python-modules/aioesphomeapi/default.nix
@@ -28,7 +28,8 @@ buildPythonPackage rec {
   propagatedBuildInputs = [
     async-timeout
     noiseprotocol
-    protobuf
+    protobuf.out
+    protobuf.dev
     zeroconf
   ];