summaryrefslogtreecommitdiffstats
path: root/pkgs/servers/home-assistant
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-06-24 22:16:51 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-06-25 00:03:40 +0200
commit6b4f9866f039008ac50f662b09bcbbd3bd517f8a (patch)
tree5ae83bf31ac9934e399f350e6f6e8908d58119ff /pkgs/servers/home-assistant
parent65360ec9c46541ab0ee680850805ed312b44495f (diff)
home-assistant: 2023.6.2 -> 2023.6.3
https://github.com/home-assistant/core/releases/tag/2023.6.3
Diffstat (limited to 'pkgs/servers/home-assistant')
-rw-r--r--pkgs/servers/home-assistant/component-packages.nix2
-rw-r--r--pkgs/servers/home-assistant/default.nix17
-rw-r--r--pkgs/servers/home-assistant/tests.nix12
3 files changed, 17 insertions, 14 deletions
diff --git a/pkgs/servers/home-assistant/component-packages.nix b/pkgs/servers/home-assistant/component-packages.nix
index 7547228bef26..635763c8768f 100644
--- a/pkgs/servers/home-assistant/component-packages.nix
+++ b/pkgs/servers/home-assistant/component-packages.nix
@@ -2,7 +2,7 @@
# Do not edit!
{
- version = "2023.6.2";
+ version = "2023.6.3";
components = {
"3_day_blinds" = ps: with ps; [
];
diff --git a/pkgs/servers/home-assistant/default.nix b/pkgs/servers/home-assistant/default.nix
index 3262dd2af806..4687181bef8e 100644
--- a/pkgs/servers/home-assistant/default.nix
+++ b/pkgs/servers/home-assistant/default.nix
@@ -231,15 +231,6 @@ let
doCheck = false;
});
- sqlalchemy = super.sqlalchemy.overridePythonAttrs (oldAttrs: rec {
- version = "2.0.12";
- src = fetchPypi {
- pname = "SQLAlchemy";
- inherit version;
- hash = "sha256-vd/FvR3uXbD93J2rJvgAwoPzJD5ygbvxByAP7TASX5w=";
- };
- });
-
# Pinned due to API changes in 0.3.0
tailscale = super.tailscale.overridePythonAttrs (oldAttrs: rec {
version = "0.2.0";
@@ -296,7 +287,7 @@ let
extraBuildInputs = extraPackages python.pkgs;
# Don't forget to run parse-requirements.py after updating
- hassVersion = "2023.6.2";
+ hassVersion = "2023.6.3";
in python.pkgs.buildPythonApplication rec {
pname = "homeassistant";
@@ -312,7 +303,7 @@ in python.pkgs.buildPythonApplication rec {
# Primary source is the pypi sdist, because it contains translations
src = fetchPypi {
inherit pname version;
- hash = "sha256-WPjqKCktCEk7yPrz8/GDphoFtD4Q3j0cIxUxOEwc/i0=";
+ hash = "sha256-hlU2LNG/9Uy7XfST/ZwVOQCar0IFvFUgpMSoSCviTrc=";
};
# Secondary source is git for tests
@@ -320,7 +311,7 @@ in python.pkgs.buildPythonApplication rec {
owner = "home-assistant";
repo = "core";
rev = "refs/tags/${version}";
- hash = "sha256-qAwNuCoQN2r++QvKCTdNs7AePszSxwrFaY5FHXf3Vy8=";
+ hash = "sha256-V/ndNu8zvtI8Z0LzrlWaV+EbeL8oBBz/D46ec+fhPPY=";
};
nativeBuildInputs = with python.pkgs; [
@@ -357,7 +348,7 @@ in python.pkgs.buildPythonApplication rec {
"PyJWT"
"pyOpenSSL"
"requests"
- "typing-extensions"
+ "typing_extensions"
"voluptuous-serialize"
"yarl"
];
diff --git a/pkgs/servers/home-assistant/tests.nix b/pkgs/servers/home-assistant/tests.nix
index 91a902a8a2d7..5b058ffb92b9 100644
--- a/pkgs/servers/home-assistant/tests.nix
+++ b/pkgs/servers/home-assistant/tests.nix
@@ -47,6 +47,9 @@ let
};
extraPytestFlagsArray = {
+ conversation = [
+ "--deselect tests/components/conversation/test_init.py::test_get_agent_list"
+ ];
dnsip = [
# Tries to resolve DNS entries
"--deselect tests/components/dnsip/test_config_flow.py::test_options_flow"
@@ -63,10 +66,19 @@ let
# aioserial mock produces wrong state
"--deselect tests/components/modem_callerid/test_init.py::test_setup_entry"
];
+ sonos = [
+ # KeyError: 'sonos_media_player'
+ "--deselect tests/components/sonos/test_init.py::test_async_poll_manual_hosts_warnings"
+ "--deselect tests/components/sonos/test_init.py::test_async_poll_manual_hosts_3"
+ ];
unifiprotect = [
# "TypeError: object Mock can't be used in 'await' expression
"--deselect tests/components/unifiprotect/test_repairs.py::test_ea_warning_fix"
];
+ zha = [
+ "--deselect tests/components/zha/test_config_flow.py::test_formation_strategy_restore_manual_backup_non_ezsp"
+ "--deselect tests/components/zha/test_config_flow.py::test_formation_strategy_restore_automatic_backup_non_ezsp"
+ ];
};
in lib.listToAttrs (map (component: lib.nameValuePair component (
home-assistant.overridePythonAttrs (old: {