esphome: 2025.6.3 -> 2025.7.0 (#425758)

This commit is contained in:
Martin Weinelt 2025-07-16 13:50:44 +02:00 committed by GitHub
commit 8b7df465fa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -34,14 +34,14 @@ let
in in
python.pkgs.buildPythonApplication rec { python.pkgs.buildPythonApplication rec {
pname = "esphome"; pname = "esphome";
version = "2025.6.3"; version = "2025.7.0";
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "esphome"; owner = "esphome";
repo = "esphome"; repo = "esphome";
tag = version; tag = version;
hash = "sha256-3Xcxn12QKQg0jxdOPP7y01YaikvxmPPX9JL2JBvdsUM="; hash = "sha256-EUnptlO9Ya6GWLP7FU3gWOAs2O5xzrHhyHr8LpomapY=";
}; };
build-system = with python.pkgs; [ build-system = with python.pkgs; [
@ -82,6 +82,7 @@ python.pkgs.buildPythonApplication rec {
esphome-glyphsets esphome-glyphsets
freetype-py freetype-py
icmplib icmplib
jinja2
kconfiglib kconfiglib
packaging packaging
paho-mqtt paho-mqtt
@ -135,25 +136,9 @@ python.pkgs.buildPythonApplication rec {
] ]
++ [ versionCheckHook ]; ++ [ versionCheckHook ];
disabledTests = [ disabledTestPaths = [
# race condition, also visible in upstream tests
# tests/dashboard/test_web_server.py:78: IndexError
"test_devices_page"
# platformio builds; requires networking for dependency resolution # platformio builds; requires networking for dependency resolution
"test_api_message_size_batching" "tests/integration"
"test_host_mode_basic"
"test_host_mode_batch_delay"
"test_host_mode_empty_string_options"
"test_host_mode_entity_fields"
"test_host_mode_fan_preset"
"test_host_mode_many_entities"
"test_host_mode_many_entities_multiple_connections"
"test_host_mode_noise_encryption"
"test_host_mode_noise_encryption_wrong_key"
"test_host_mode_reconnect"
"test_host_mode_with_sensor"
"test_large_message_batching"
]; ];
preCheck = '' preCheck = ''