Skip to content

Commit

Permalink
home-assistant: 2024.9.1 -> 2024.9.2 (#342781)
Browse files Browse the repository at this point in the history
  • Loading branch information
mweinelt committed Sep 18, 2024
2 parents 7f206b6 + 3e0f775 commit fbfb6e2
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 19 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/aiolifx-themes/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

buildPythonPackage rec {
pname = "aiolifx-themes";
version = "0.5.3";
version = "0.5.5";
pyproject = true;

disabled = pythonOlder "3.9";
Expand All @@ -22,7 +22,7 @@ buildPythonPackage rec {
owner = "Djelibeybi";
repo = "aiolifx-themes";
rev = "refs/tags/v${version}";
hash = "sha256-e07moT5XKrJ8PYZFsnibxV9kxUptMNo+Q/noOkKllnI=";
hash = "sha256-Q4PlEnbdEUWYG/odD+xSG975lsRQqhOgFb//hk+PWIw=";
};

build-system = [ poetry-core ];
Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/aiolifx/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@

buildPythonPackage rec {
pname = "aiolifx";
version = "1.0.9";
version = "1.1.1";
pyproject = true;

disabled = pythonOlder "3.7";

src = fetchPypi {
inherit pname version;
hash = "sha256-x2wzFXehwLZWkRsBv54kYa7aon02saZpBIIA1J+9Fdc=";
hash = "sha256-oZpq2qUAtqDaRhgW9SbbQY9z81VqrqXhRLmpaPto9+A=";
};

build-system = [ setuptools ];
Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/bellows/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

buildPythonPackage rec {
pname = "bellows";
version = "0.40.5";
version = "0.40.6";
pyproject = true;

disabled = pythonOlder "3.8";
Expand All @@ -27,7 +27,7 @@ buildPythonPackage rec {
owner = "zigpy";
repo = "bellows";
rev = "refs/tags/${version}";
hash = "sha256-VOeoIv1tVcgLfDAH8NKtqyL3x5puDwdxlJ2gqw213t8=";
hash = "sha256-c0ebEulI1wY/ws6eqgkMQbprq5bzv+hJW0WDPkW/sys=";
};

postPatch = ''
Expand Down
9 changes: 4 additions & 5 deletions pkgs/development/python-modules/sfrbox-api/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
defusedxml,
fetchFromGitHub,
httpx,
mashumaro,
poetry-core,
pydantic,
pytest-asyncio,
pytestCheckHook,
pythonOlder,
Expand All @@ -15,7 +15,7 @@

buildPythonPackage rec {
pname = "sfrbox-api";
version = "0.0.10";
version = "0.0.11";
pyproject = true;

disabled = pythonOlder "3.9";
Expand All @@ -24,20 +24,19 @@ buildPythonPackage rec {
owner = "hacf-fr";
repo = "sfrbox-api";
rev = "refs/tags/v${version}";
hash = "sha256-xvtusgqCseXAmiPQBFFZnRS9KmuhzHhZUAj5aaqyFrE=";
hash = "sha256-Ec3UOserFijBK6goyM6AMOekfLgjBq8l/9sMKYnj240=";
};

pythonRelaxDeps = [
"defusedxml"
"pydantic"
];

build-system = [ poetry-core ];

dependencies = [
defusedxml
mashumaro
httpx
pydantic
];

passthru.optional-dependencies = {
Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/zha/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

buildPythonPackage rec {
pname = "zha";
version = "0.0.32";
version = "0.0.33";
pyproject = true;

disabled = pythonOlder "3.12";
Expand All @@ -36,7 +36,7 @@ buildPythonPackage rec {
owner = "zigpy";
repo = "zha";
rev = "refs/tags/${version}";
hash = "sha256-DIVzgTAlxzYqEPrLeX5e1At9EiEm0z+CzZ2bulgWINU=";
hash = "sha256-qcXKHIiEm1wqcQKRH+TqgQMPZbLqNnBiR6dbmLwxW1Y=";
};

postPatch = ''
Expand Down
2 changes: 1 addition & 1 deletion pkgs/servers/home-assistant/component-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Do not edit!

{
version = "2024.9.1";
version = "2024.9.2";
components = {
"3_day_blinds" = ps: with ps; [
];
Expand Down
6 changes: 3 additions & 3 deletions pkgs/servers/home-assistant/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ let
extraBuildInputs = extraPackages python.pkgs;

# Don't forget to run update-component-packages.py after updating
hassVersion = "2024.9.1";
hassVersion = "2024.9.2";

in python.pkgs.buildPythonApplication rec {
pname = "homeassistant";
Expand All @@ -426,13 +426,13 @@ in python.pkgs.buildPythonApplication rec {
owner = "home-assistant";
repo = "core";
rev = "refs/tags/${version}";
hash = "sha256-jwkLlmwP9rxwGFVagVyVrO6scOMzuva1Pz706nb3Ato=";
hash = "sha256-qAnEdH1MDPsCKDubpYL5AswcsaPqGm+TrKdBcDD3np8=";
};

# Secondary source is pypi sdist for translations
sdist = fetchPypi {
inherit pname version;
hash = "sha256-0+tXKnkcpjISqapvFh7nPKfPxJrSACuxulejk4pCPUQ=";
hash = "sha256-gWQU18GfnsxttRzpoN9WeNeHOgioTxF9DmG2SwNuzEY=";
};

build-system = with python.pkgs; [
Expand Down
4 changes: 2 additions & 2 deletions pkgs/servers/home-assistant/frontend.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ buildPythonPackage rec {
# the frontend version corresponding to a specific home-assistant version can be found here
# https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json
pname = "home-assistant-frontend";
version = "20240906.0";
version = "20240909.1";
format = "wheel";

src = fetchPypi {
inherit version format;
pname = "home_assistant_frontend";
dist = "py3";
python = "py3";
hash = "sha256-iWSpwgp5mdAhuZgF+1uNL0aovjM7CZ4SbM0HHQktfAk=";
hash = "sha256-inxDdsJQ58Jg+3bc382l8z/PbChWI0pfZR/k+wyexvE=";
};

# there is nothing to strip in this package
Expand Down

0 comments on commit fbfb6e2

Please sign in to comment.