···2# Do not edit!
34{
5- version = "2025.7.2";
6 components = {
7 "3_day_blinds" =
8 ps: with ps; [
···2# Do not edit!
34{
5+ version = "2025.7.3";
6 components = {
7 "3_day_blinds" =
8 ps: with ps; [
+3-3
pkgs/servers/home-assistant/default.nix
···354 extraBuildInputs = extraPackages python.pkgs;
355356 # Don't forget to run update-component-packages.py after updating
357- hassVersion = "2025.7.2";
358359in
360python.pkgs.buildPythonApplication rec {
···375 owner = "home-assistant";
376 repo = "core";
377 tag = version;
378- hash = "sha256-aBIG4dxCdj1dQP5wMd5ySXggUvspGlnh7btxmMr/51Y=";
379 };
380381 # Secondary source is pypi sdist for translations
382 sdist = fetchPypi {
383 inherit pname version;
384- hash = "sha256-J8KH9y8dNsKW+jc5Wkqnw9VreKoUQH0dEBbne/6xiMw=";
385 };
386387 build-system = with python.pkgs; [
···354 extraBuildInputs = extraPackages python.pkgs;
355356 # Don't forget to run update-component-packages.py after updating
357+ hassVersion = "2025.7.3";
358359in
360python.pkgs.buildPythonApplication rec {
···375 owner = "home-assistant";
376 repo = "core";
377 tag = version;
378+ hash = "sha256-FT77obtb081QOgw+nqbQvvW+3x/L2WUr3DLT8X1Wpwg=";
379 };
380381 # Secondary source is pypi sdist for translations
382 sdist = fetchPypi {
383 inherit pname version;
384+ hash = "sha256-jO+rNIzEvtQ1vhSD1Xbq/SKV5XvBOb4MmkkczoeD1Kc=";
385 };
386387 build-system = with python.pkgs; [
+2-2
pkgs/servers/home-assistant/frontend.nix
···8 # the frontend version corresponding to a specific home-assistant version can be found here
9 # https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json
10 pname = "home-assistant-frontend";
11- version = "20250702.2";
12 format = "wheel";
1314 src = fetchPypi {
···16 pname = "home_assistant_frontend";
17 dist = "py3";
18 python = "py3";
19- hash = "sha256-3/m2T2yUpjczHEIywdwL+fqr9juiN2Mtd1iT+X+lTxo=";
20 };
2122 # there is nothing to strip in this package
···8 # the frontend version corresponding to a specific home-assistant version can be found here
9 # https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json
10 pname = "home-assistant-frontend";
11+ version = "20250702.3";
12 format = "wheel";
1314 src = fetchPypi {
···16 pname = "home_assistant_frontend";
17 dist = "py3";
18 python = "py3";
19+ hash = "sha256-Uj7auy5emdP8l9vUxLbAL28UNoAi1OQ/8qIhmJMmA8Q=";
20 };
2122 # there is nothing to strip in this package
···97 with urlopen(
98 f"https://github.com/home-assistant/home-assistant/archive/{version}.tar.gz"
99 ) as response:
100- tarfile.open(fileobj=BytesIO(response.read())).extractall(tmp)
101 # Use part of a script from the Home Assistant codebase
102 core_path = os.path.join(tmp, f"core-{version}")
103
···97 with urlopen(
98 f"https://github.com/home-assistant/home-assistant/archive/{version}.tar.gz"
99 ) as response:
100+ tarfile.open(fileobj=BytesIO(response.read())).extractall(tmp, filter="data")
101 # Use part of a script from the Home Assistant codebase
102 core_path = os.path.join(tmp, f"core-{version}")
103