From 70157e5e32bb2439ace526d7729f7b861561a2b2 Mon Sep 17 00:00:00 2001 From: Bob Soppe Date: Fri, 20 Sep 2024 09:43:02 +0200 Subject: [PATCH] esphome: add python-setuptools depedency When compiling a configuration which uses esp-idf, the `pkg_resources` module is missing. Adding the `python-setuptools` dependency will fix this issue --- Formula/e/esphome.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/e/esphome.rb b/Formula/e/esphome.rb index 155d120e7f6f..06ee9dc91c6a 100644 --- a/Formula/e/esphome.rb +++ b/Formula/e/esphome.rb @@ -20,6 +20,7 @@ class Esphome < Formula depends_on "cryptography" depends_on "libmagic" depends_on "libyaml" + depends_on "python-setuptools" depends_on "python@3.12" uses_from_macos "libffi"