home-assistant: 2022.8.1 -> 2022.8.2

https://github.com/home-assistant/core/releases/tag/2022.8.2

Pins pydeconz at 102 for yet another API change breaking the tests.
This commit is contained in:
Martin Weinelt 2022-08-08 00:32:09 +02:00
parent eab827c6ee
commit de42430fa7
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
2 changed files with 21 additions and 7 deletions

View File

@ -2,7 +2,7 @@
# Do not edit!
{
version = "2022.8.1";
version = "2022.8.2";
components = {
"abode" = ps: with ps; [
abodepy
@ -1048,7 +1048,9 @@
"graphite" = ps: with ps; [
];
"gree" = ps: with ps; [
aiohttp-cors
greeclimate
ifaddr
];
"greeneye_monitor" = ps: with ps; [
greeneye-monitor
@ -2235,7 +2237,8 @@
"remote" = ps: with ps; [
];
"remote_rpi_gpio" = ps: with ps; [
]; # missing inputs: gpiozero pigpio
gpiozero
]; # missing inputs: pigpio
"renault" = ps: with ps; [
renault-api
];

View File

@ -112,9 +112,6 @@ let
hass-nabucasa = super.hass-nabucasa.overridePythonAttrs (oldAttrs: {
doCheck = false; # requires aiohttp>=1.0.0
});
pydeconz = super.pydeconz.overridePythonAttrs (oldAttrs: {
doCheck = false; # requires pytest-aiohttp>=1.0.0
});
pynws = super.pynws.overridePythonAttrs (oldAttrs: {
doCheck = false; # requires pytest-aiohttp>=1.0.0
});
@ -186,6 +183,20 @@ let
});
})
(self: super: {
pydeconz = super.pydeconz.overridePythonAttrs (oldAttrs: rec {
version = "102";
src = fetchFromGitHub {
owner = "Kane610";
repo = "deconz";
rev = "refs/tags/v${version}";
hash = "sha256-Dbhp/+xyyWhFcYp2VRnivn5d1JMR5hBctdArIzLKIjM=";
};
doCheck = false; # requires pytest-aiohttp>=1.0.0
});
})
(self: super: {
python-slugify = super.python-slugify.overridePythonAttrs (oldAttrs: rec {
pname = "python-slugify";
@ -296,7 +307,7 @@ let
extraPackagesFile = writeText "home-assistant-packages" (lib.concatMapStringsSep "\n" (pkg: pkg.pname) extraBuildInputs);
# Don't forget to run parse-requirements.py after updating
hassVersion = "2022.8.1";
hassVersion = "2022.8.2";
in python.pkgs.buildPythonApplication rec {
pname = "homeassistant";
@ -314,7 +325,7 @@ in python.pkgs.buildPythonApplication rec {
owner = "home-assistant";
repo = "core";
rev = version;
hash = "sha256-0QhWusJ7vSiudigJTo4KiXqO0OWgIlvqkSpiK5FFI+g=";
hash = "sha256-82UPZmaSJVO0kmlGuY08vS3y5ai0NtSQ7ntkiOcNc2A=";
};
# leave this in, so users don't have to constantly update their downstream patch handling