home-assistant: 2023.3.3 -> 2023.3.4

https://github.com/home-assistant/core/releases/tag/2023.3.4
This commit is contained in:
Martin Weinelt 2023-03-14 08:05:05 +01:00
parent 8ee557085b
commit dbda7cc58c
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
2 changed files with 6 additions and 6 deletions

View file

@ -2,7 +2,7 @@
# Do not edit!
{
version = "2023.3.3";
version = "2023.3.4";
components = {
"3_day_blinds" = ps: with ps; [
];

View file

@ -181,11 +181,11 @@ let
});
sqlalchemy = super.sqlalchemy.overridePythonAttrs (oldAttrs: rec {
version = "2.0.5.post1";
version = "2.0.6";
src = super.fetchPypi {
pname = "SQLAlchemy";
inherit version;
hash = "sha256-E+sqWILP2fTu2q7BSlYDoJbwEl98PLSGEbO/o8JT8l0=";
hash = "sha256-w0PwtUZJX116I5xwv1CpmkjXMhwWW4Kvr6hIO56+v24=";
};
nativeCheckInputs = oldAttrs.nativeCheckInputs ++ (with super; [
pytest-xdist
@ -263,7 +263,7 @@ let
extraBuildInputs = extraPackages python.pkgs;
# Don't forget to run parse-requirements.py after updating
hassVersion = "2023.3.3";
hassVersion = "2023.3.4";
in python.pkgs.buildPythonApplication rec {
pname = "homeassistant";
@ -279,7 +279,7 @@ in python.pkgs.buildPythonApplication rec {
# Primary source is the pypi sdist, because it contains translations
src = fetchPypi {
inherit pname version;
hash = "sha256-AJJ0w66a8D3kiLHhnoFmnGRWyDJ4OCebwwKTGdprGa0=";
hash = "sha256-BJCik8TxNzOsehD1fBNQO8Kvmb6ZaqEy4oEVmtIhwp0=";
};
# Secondary source is git for tests
@ -287,7 +287,7 @@ in python.pkgs.buildPythonApplication rec {
owner = "home-assistant";
repo = "core";
rev = "refs/tags/${version}";
hash = "sha256-KTmMA8P0MhYAiwp073Q3s60budFKHrsBnAJSqYC7zis=";
hash = "sha256-iwRjyOgQNTs54mnL3mlL9O3wVD5SWZIl+Hhxir6F+3o=";
};
nativeBuildInputs = with python3.pkgs; [