Skip to content

Commit 73ec744

Browse files
committed
1 parent 579125c commit 73ec744

File tree

3 files changed

+7
-17
lines changed

3 files changed

+7
-17
lines changed

pkgs/servers/home-assistant/component-packages.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Do not edit!
33

44
{
5-
version = "2024.8.0";
5+
version = "2024.8.1";
66
components = {
77
"3_day_blinds" = ps: with ps; [
88
];
@@ -645,7 +645,7 @@
645645
"coautilities" = ps: with ps; [
646646
];
647647
"coinbase" = ps: with ps; [
648-
]; # missing inputs: coinbase
648+
]; # missing inputs: coinbase coinbase-advanced-py
649649
"color_extractor" = ps: with ps; [
650650
colorthief
651651
];

pkgs/servers/home-assistant/default.nix

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -311,16 +311,6 @@ let
311311
};
312312
});
313313

314-
pyopenweathermap = super.pyopenweathermap.overridePythonAttrs (oldAttrs: rec {
315-
version = "0.0.10";
316-
src = fetchFromGitHub {
317-
owner = "freekode";
318-
repo = "pyopenweathermap";
319-
rev = "refs/tags/v${version}";
320-
hash = "sha256-wEcE4IYVvxEwW5Hhz+DqDIqbjd5/O1hEr7dGgiuMI00=";
321-
};
322-
});
323-
324314
pysnooz = super.pysnooz.overridePythonAttrs (oldAttrs: rec {
325315
version = "0.8.6";
326316
src = fetchFromGitHub {
@@ -481,7 +471,7 @@ let
481471
extraBuildInputs = extraPackages python.pkgs;
482472

483473
# Don't forget to run update-component-packages.py after updating
484-
hassVersion = "2024.8.0";
474+
hassVersion = "2024.8.1";
485475

486476
in python.pkgs.buildPythonApplication rec {
487477
pname = "homeassistant";
@@ -499,13 +489,13 @@ in python.pkgs.buildPythonApplication rec {
499489
owner = "home-assistant";
500490
repo = "core";
501491
rev = "refs/tags/${version}";
502-
hash = "sha256-WGbT53bmyV1d/6GKlv5+bxLmGRqsAHEKbs2halMkPB4=";
492+
hash = "sha256-sbXfvlQJRRVkvSRJ8v/Su8us9WnoJUF4odAJrewryco=";
503493
};
504494

505495
# Secondary source is pypi sdist for translations
506496
sdist = fetchPypi {
507497
inherit pname version;
508-
hash = "sha256-RfTkF8HO5bZCupo5vBLbSG2shr+b31GfDN+iJpH5sc8=";
498+
hash = "sha256-VzoH+wrpUAXJRjEZC2x9qjRzTSsiaUm6aI6/uHv6h/4=";
509499
};
510500

511501
build-system = with python.pkgs; [

pkgs/servers/home-assistant/frontend.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ buildPythonPackage rec {
44
# the frontend version corresponding to a specific home-assistant version can be found here
55
# https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json
66
pname = "home-assistant-frontend";
7-
version = "20240806.1";
7+
version = "20240809.0";
88
format = "wheel";
99

1010
src = fetchPypi {
1111
inherit version format;
1212
pname = "home_assistant_frontend";
1313
dist = "py3";
1414
python = "py3";
15-
hash = "sha256-tOM1KFffoPoS3FCdytdkwiptdLwKxpZFQJ4VU3i3WN0=";
15+
hash = "sha256-PVW/W6/a/kbhbGw35/+AHvjAn1Xq3dW5nslMJWsDgv4=";
1616
};
1717

1818
# there is nothing to strip in this package

0 commit comments

Comments
 (0)