home-assistant: 2025.5.2 -> 2025.5.3

https://github.com/home-assistant/core/releases/tag/2025.5.3
This commit is contained in:
Martin Weinelt 2025-05-24 01:56:34 +02:00
parent 6edb0dd30b
commit 2bfe49e397
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
3 changed files with 37 additions and 11 deletions

View file

@ -2,7 +2,7 @@
# Do not edit! # Do not edit!
{ {
version = "2025.5.2"; version = "2025.5.3";
components = { components = {
"3_day_blinds" = "3_day_blinds" =
ps: with ps; [ ps: with ps; [
@ -4087,7 +4087,19 @@
]; ];
"onedrive" = "onedrive" =
ps: with ps; [ ps: with ps; [
aiohasupervisor
cronsim
ha-ffmpeg
hass-nabucasa
hassil
home-assistant-intents
mutagen
onedrive-personal-sdk onedrive-personal-sdk
pymicro-vad
pyspeex-noise
python-matter-server
pyturbojpeg
securetar
]; ];
"onewire" = "onewire" =
ps: with ps; [ ps: with ps; [
@ -6899,6 +6911,7 @@
"elgato" "elgato"
"elkm1" "elkm1"
"elmax" "elmax"
"elvia"
"emoncms" "emoncms"
"emonitor" "emonitor"
"emulated_hue" "emulated_hue"

View file

@ -163,12 +163,12 @@ let
}; };
}); });
openhomedevice = super.openhomedevice.overridePythonAttrs (oldAttrs: rec { mcp = super.mcp.overridePythonAttrs (oldAttrs: rec {
version = "2.2"; version = "1.5.0";
src = fetchFromGitHub { src = fetchFromGitHub {
inherit (oldAttrs.src) owner repo; inherit (oldAttrs.src) owner repo;
rev = "refs/tags/${version}"; tag = "v${version}";
hash = "sha256-GGp7nKFH01m1KW6yMkKlAdd26bDi8JDWva6OQ0CWMIw="; hash = "sha256-Z2NN6k4mD6NixDON1MUOELpBZW9JvMvFErcCbFPdg2o=";
}; };
}); });
@ -194,6 +194,15 @@ let
doCheck = false; # no tests doCheck = false; # no tests
}); });
openhomedevice = super.openhomedevice.overridePythonAttrs (oldAttrs: rec {
version = "2.2";
src = fetchFromGitHub {
inherit (oldAttrs.src) owner repo;
rev = "refs/tags/${version}";
hash = "sha256-GGp7nKFH01m1KW6yMkKlAdd26bDi8JDWva6OQ0CWMIw=";
};
});
plexapi = super.plexapi.overrideAttrs (oldAttrs: rec { plexapi = super.plexapi.overrideAttrs (oldAttrs: rec {
version = "4.15.16"; version = "4.15.16";
src = fetchFromGitHub { src = fetchFromGitHub {
@ -377,7 +386,7 @@ let
extraBuildInputs = extraPackages python.pkgs; extraBuildInputs = extraPackages python.pkgs;
# Don't forget to run update-component-packages.py after updating # Don't forget to run update-component-packages.py after updating
hassVersion = "2025.5.2"; hassVersion = "2025.5.3";
in in
python.pkgs.buildPythonApplication rec { python.pkgs.buildPythonApplication rec {
@ -398,13 +407,13 @@ python.pkgs.buildPythonApplication rec {
owner = "home-assistant"; owner = "home-assistant";
repo = "core"; repo = "core";
tag = version; tag = version;
hash = "sha256-el5s82R4MuTjUnMVXRQj4PhPxJxHoL6Jqvc6XRnJl8w="; hash = "sha256-qqPO7dr+Sb1RKYoOV7MhT2E1FcW7lAKTTB0T+UzLwzk=";
}; };
# Secondary source is pypi sdist for translations # Secondary source is pypi sdist for translations
sdist = fetchPypi { sdist = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-lddnAM3fja9enPYRSonwSe1aG8t55jSJQNveWPwrhOE="; hash = "sha256-8WusUfZEyoBPltVrDpDQVkbIFEHn1GGdA4Pt0Zb1+Fo=";
}; };
build-system = with python.pkgs; [ build-system = with python.pkgs; [

View file

@ -63,6 +63,10 @@ let
}; };
extraDisabledTests = { extraDisabledTests = {
forecast_solar = [
# language fixture mismatch
"test_enabling_disable_by_default"
];
sensor = [ sensor = [
# Failed: Translation not found for sensor # Failed: Translation not found for sensor
"test_validate_unit_change_convertible" "test_validate_unit_change_convertible"
@ -78,9 +82,9 @@ let
# tries to retrieve file from github # tries to retrieve file from github
"test_non_text_stdout_capture" "test_non_text_stdout_capture"
]; ];
stream = [ smartthings = [
# crashes with x265>=4.0 # outdated snapshots
"test_h265_video_is_hvc1" "test_all_entities"
]; ];
websocket_api = [ websocket_api = [
# AssertionError: assert 'unknown_error' == 'template_error' # AssertionError: assert 'unknown_error' == 'template_error'