home-assistant: 2024.4.1 -> 2024.4.2

https://github.com/home-assistant/core/releases/tag/2024.4.2
This commit is contained in:
Martin Weinelt 2024-04-10 22:19:19 +02:00
parent ab34cd46e8
commit 8437230323
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
2 changed files with 22 additions and 4 deletions

View File

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

View File

@ -39,6 +39,15 @@ let
}; };
}); });
aioautomower = super.aioautomower.overridePythonAttrs (oldAttrs: rec {
version = "2024.3.4";
src = fetchFromGitHub {
inherit (oldAttrs.src) owner repo;
rev = "refs/tags/${version}";
hash = "sha256-dk8HfIiQOKq7Ky+vYa3wKmTS78gTw6J0yyQT2Folpp0=";
};
});
aioelectricitymaps = super.aioelectricitymaps.overridePythonAttrs (oldAttrs: rec { aioelectricitymaps = super.aioelectricitymaps.overridePythonAttrs (oldAttrs: rec {
version = "0.4.0"; version = "0.4.0";
src = fetchFromGitHub { src = fetchFromGitHub {
@ -222,6 +231,15 @@ let
}; };
}); });
jaraco-functools = super.jaraco-functools.overridePythonAttrs (oldAttrs: rec {
version = "3.9.0";
src = fetchPypi {
pname = "jaraco.functools";
inherit version;
hash = "sha256-ixN7D+rMF/70us7gTAEcnobyNBCZyHCh0S0743sypjg=";
};
});
lmcloud = super.lmcloud.overridePythonAttrs (oldAttrs: rec { lmcloud = super.lmcloud.overridePythonAttrs (oldAttrs: rec {
version = "0.4.35"; version = "0.4.35";
src = fetchFromGitHub { src = fetchFromGitHub {
@ -508,7 +526,7 @@ let
extraBuildInputs = extraPackages python.pkgs; extraBuildInputs = extraPackages python.pkgs;
# Don't forget to run parse-requirements.py after updating # Don't forget to run parse-requirements.py after updating
hassVersion = "2024.4.1"; hassVersion = "2024.4.2";
in python.pkgs.buildPythonApplication rec { in python.pkgs.buildPythonApplication rec {
pname = "homeassistant"; pname = "homeassistant";
@ -526,13 +544,13 @@ in python.pkgs.buildPythonApplication rec {
owner = "home-assistant"; owner = "home-assistant";
repo = "core"; repo = "core";
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-fVuScSfXFQJjHLBD7w1KsswZ4yebOzPTvXffeMlWrmo="; hash = "sha256-V6qvpPrhfSLINH99hYkAjvG8pfIN8AXGO3HuwiKgMPo=";
}; };
# 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-nMzB0qQrYRxJA1p4L4OZW25WRQBQ2hq/yZs5f3AcdAU="; hash = "sha256-ZtTlLRDSXKUz+ZA+UctFL+d3wdKrcPdeROIUhS35qWU=";
}; };
nativeBuildInputs = with python.pkgs; [ nativeBuildInputs = with python.pkgs; [