home-assistant: 2023.7.2 -> 2023.7.3

https://github.com/home-assistant/core/releases/tag/2023.7.3
This commit is contained in:
Martin Weinelt 2023-07-22 01:50:11 +02:00
parent 87ceb553af
commit 4f8c6e9001
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
3 changed files with 17 additions and 8 deletions

View file

@ -2,7 +2,7 @@
# Do not edit! # Do not edit!
{ {
version = "2023.7.2"; version = "2023.7.3";
components = { components = {
"3_day_blinds" = ps: with ps; [ "3_day_blinds" = ps: with ps; [
]; ];
@ -710,7 +710,6 @@
aiodiscover aiodiscover
aiohttp-cors aiohttp-cors
async-upnp-client async-upnp-client
av
bleak bleak
bleak-retry-connector bleak-retry-connector
bluetooth-adapters bluetooth-adapters
@ -718,6 +717,7 @@
bluetooth-data-tools bluetooth-data-tools
dbus-fast dbus-fast
fnv-hash-fast fnv-hash-fast
ha-av
hass-nabucasa hass-nabucasa
hassil hassil
home-assistant-frontend home-assistant-frontend
@ -1364,7 +1364,7 @@
]; ];
"generic" = ps: with ps; [ "generic" = ps: with ps; [
aiohttp-cors aiohttp-cors
av ha-av
pillow pillow
]; ];
"generic_hygrostat" = ps: with ps; [ "generic_hygrostat" = ps: with ps; [
@ -3882,7 +3882,7 @@
]; # missing inputs: stookwijzer ]; # missing inputs: stookwijzer
"stream" = ps: with ps; [ "stream" = ps: with ps; [
aiohttp-cors aiohttp-cors
av ha-av
numpy numpy
pyturbojpeg pyturbojpeg
]; ];

View file

@ -76,6 +76,16 @@ let
doCheck = false; doCheck = false;
}); });
ha-av = super.av.overridePythonAttrs (oldAttrs: rec {
pname = "ha-av";
version = "10.1.0";
src = fetchPypi {
inherit pname version;
hash = "sha256-HjOu/A1U3CfoVq6VqxA621/9wXk8hFnTFWtdpnVoFr4=";
};
});
jaraco-abode = super.jaraco-abode.overridePythonAttrs (oldAttrs: rec { jaraco-abode = super.jaraco-abode.overridePythonAttrs (oldAttrs: rec {
version = "3.3.0"; version = "3.3.0";
src = fetchFromGitHub { src = fetchFromGitHub {
@ -287,7 +297,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 = "2023.7.2"; hassVersion = "2023.7.3";
in python.pkgs.buildPythonApplication rec { in python.pkgs.buildPythonApplication rec {
pname = "homeassistant"; pname = "homeassistant";
@ -303,7 +313,7 @@ in python.pkgs.buildPythonApplication rec {
# Primary source is the pypi sdist, because it contains translations # Primary source is the pypi sdist, because it contains translations
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-fESzpOOEGFOJJ0ldI/VaVN0kH/zbCCq25s8vNnCUOFs="; hash = "sha256-wYS7G3AD1G7UzXfrJxrHGpQTBLJFa7Qln1VU0pdcNro=";
}; };
# Secondary source is git for tests # Secondary source is git for tests
@ -311,7 +321,7 @@ 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-HW+XO84enAA3BH4nppkXvAERT74y5m5jvz0uHWkkS6k="; hash = "sha256-2m0RpEQ4Rds9+JVQj5/HTmOZzYd4yWL+MfjQs923VL0=";
}; };
nativeBuildInputs = with python.pkgs; [ nativeBuildInputs = with python.pkgs; [

View file

@ -40,7 +40,6 @@ PKG_SET = "home-assistant.python.pkgs"
# following can be used to choose the correct one # following can be used to choose the correct one
PKG_PREFERENCES = { PKG_PREFERENCES = {
"fiblary3": "fiblary3-fork", # https://github.com/home-assistant/core/issues/66466 "fiblary3": "fiblary3-fork", # https://github.com/home-assistant/core/issues/66466
"ha-av": "av",
"HAP-python": "hap-python", "HAP-python": "hap-python",
"tensorflow": "tensorflow", "tensorflow": "tensorflow",
"yt-dlp": "yt-dlp", "yt-dlp": "yt-dlp",