File tree Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Original file line number Diff line number Diff line change 3333in
3434python . pkgs . buildPythonApplication rec {
3535 pname = "esphome" ;
36- version = "2025.10.5 " ;
36+ version = "2025.11.0 " ;
3737 pyproject = true ;
3838
3939 src = fetchFromGitHub {
4040 owner = "esphome" ;
4141 repo = "esphome" ;
4242 tag = version ;
43- hash = "sha256-o40zMoqgjBpkn80dUvr7mJQ/EtmIHEI/cf/E+wbBPOw =" ;
43+ hash = "sha256-ezyuV9PcZ5SsJc5viyV+8n+pW8k0SV2bXr+JPVkOdus =" ;
4444 } ;
4545
4646 patches = [
@@ -64,10 +64,6 @@ python.pkgs.buildPythonApplication rec {
6464 pythonRemoveDeps = [
6565 "esptool"
6666 "platformio"
67- # esp-idf v5.1 uses esp-idf-kconfig instead:
68- # https://github.com/espressif/esp-idf/blob/release/v5.1/tools/requirements/requirements.core.txt#L15
69- # Can be removed once this pr is released: https://github.com/esphome/esphome/pull/11210
70- "kconfiglib"
7167 ] ;
7268
7369 postPatch = ''
@@ -82,6 +78,7 @@ python.pkgs.buildPythonApplication rec {
8278 dependencies = with python . pkgs ; [
8379 aioesphomeapi
8480 argcomplete
81+ bleak
8582 cairosvg
8683 click
8784 colorama
@@ -137,7 +134,10 @@ python.pkgs.buildPythonApplication rec {
137134 pytest-mock
138135 pytestCheckHook
139136 ]
140- ++ [ versionCheckHook ] ;
137+ ++ [
138+ git
139+ versionCheckHook
140+ ] ;
141141
142142 disabledTestPaths = [
143143 # platformio builds; requires networking for dependency resolution
@@ -172,6 +172,9 @@ python.pkgs.buildPythonApplication rec {
172172 "test_upload_using_esptool_with_file_path"
173173 # AssertionError: Expected 'run_external_command' to have been called once. Called 0 times.
174174 "test_run_platformio_cli_sets_environment_variables"
175+ # Expects a full git clone
176+ "test_clang_tidy_mode_full_scan"
177+ "test_clang_tidy_mode_targeted_scan"
175178 ] ;
176179
177180 versionCheckProgramArg = "--version" ;
You can’t perform that action at this time.
0 commit comments