Unverified Commit bd103d94 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

Merge pull request #228779 from mweinelt/fix-esphome-component

python310Packages.aioesphomeapi: Propagate protobuf dev output
parents 358a1795 9ebb4696
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -61,6 +61,13 @@ in {
        # https://www.home-assistant.io/integrations/frontend/
        frontend = {};

        # include some popular integrations, that absolutely shouldn't break
        esphome = {};
        knx = {};
        matter = {};
        shelly = {};
        zha = {};

        # set up a wake-on-lan switch to test capset capability required
        # for the ping suid wrapper
        # https://www.home-assistant.io/integrations/wake_on_lan/
@@ -107,7 +114,7 @@ in {
    # Cause a configuration change that requires a service restart as we added a new runtime dependency
    specialisation.newFeature = {
      inheritParentConfig = true;
      configuration.services.home-assistant.config.esphome = {};
      configuration.services.home-assistant.config.backup = {};
    };
  };

+2 −1
Original line number Diff line number Diff line
@@ -28,7 +28,8 @@ buildPythonPackage rec {
  propagatedBuildInputs = [
    async-timeout
    noiseprotocol
    protobuf
    protobuf.out
    protobuf.dev
    zeroconf
  ];