Merge pull request #310663 from NixOS/home-assistant

home-assistant: 2024.5.2 -> 2024.5.3
This commit is contained in:
Martin Weinelt
2024-05-10 22:46:03 +02:00
committed by GitHub
4 changed files with 26 additions and 9 deletions
@@ -21,7 +21,7 @@
buildPythonPackage rec {
pname = "deebot-client";
version = "7.1.0";
version = "7.2.0";
pyproject = true;
disabled = pythonOlder "3.12";
@@ -30,7 +30,7 @@ buildPythonPackage rec {
owner = "DeebotUniverse";
repo = "client.py";
rev = "refs/tags/${version}";
hash = "sha256-x4P0hFsyo/QLQA+MOecbiKfZ/5TL6WKWXftsLz9XBA4=";
hash = "sha256-5GALvd9p+ksxWqkfkSd07mPNzQSbdeGzrUjQU2nWs3g=";
};
build-system = [
@@ -2,7 +2,7 @@
# Do not edit!
{
version = "2024.5.2";
version = "2024.5.3";
components = {
"3_day_blinds" = ps: with ps; [
];
+4 -3
View File
@@ -529,7 +529,7 @@ let
extraBuildInputs = extraPackages python.pkgs;
# Don't forget to run update-component-packages.py after updating
hassVersion = "2024.5.2";
hassVersion = "2024.5.3";
in python.pkgs.buildPythonApplication rec {
pname = "homeassistant";
@@ -547,13 +547,13 @@ in python.pkgs.buildPythonApplication rec {
owner = "home-assistant";
repo = "core";
rev = "refs/tags/${version}";
hash = "sha256-OdtkkZ8Yl6H2dUBILrT/02ML3MnptdBydVzKhxoKjAY=";
hash = "sha256-KNuBv3BSEkIBEN9rC4vqJcd8TE4ik/BlF3IB+ZTu4Pk=";
};
# Secondary source is pypi sdist for translations
sdist = fetchPypi {
inherit pname version;
hash = "sha256-5ASuTREkAUCS94Ur5yNHU8ISrASGl90scyYWBHiKlKI=";
hash = "sha256-0asL9TAzAASPq8ytA8HhyaOUgfVUzQPsZJCz1TUygf4=";
};
build-system = with python.pkgs; [
@@ -567,6 +567,7 @@ in python.pkgs.buildPythonApplication rec {
"bcrypt"
"ciso8601"
"cryptography"
"jinja2"
"hass-nabucasa"
"httpx"
"orjson"
+19 -3
View File
@@ -49,9 +49,21 @@ let
};
extraDisabledTests = {
private_ble_device = [
# AssertionError: assert '90' == '90.0'
"test_estimated_broadcast_interval"
advantage_air = [
# AssertionError: assert 2 == 1 (Expected two calls, got one)
"test_binary_sensor_async_setup_entry"
];
hassio = [
# fails to load the hardware component
"test_device_registry_calls"
];
husqvarna_automower = [
# snapshot mismatch
"test_device_diagnostics"
];
recorder = [
# call not happening, likely due to timezone issues
"test_auto_purge"
];
shell_command = [
# tries to retrieve file from github
@@ -61,6 +73,10 @@ let
# missing operating_status attribute in entity
"test_sensor_entities"
];
websocket_api = [
# racy
"test_render_template_with_timeout"
];
};
extraPytestFlagsArray = {