Unverified Commit 927f8aa3 authored by Martin Weinelt's avatar Martin Weinelt
Browse files

home-assistant: 2025.11.1 -> 2025.11.2

parent e5525605
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
# Do not edit!

{
  version = "2025.11.1";
  version = "2025.11.2";
  components = {
    "3_day_blinds" =
      ps: with ps; [
+10 −3
Original line number Diff line number Diff line
@@ -4,6 +4,7 @@
  callPackage,
  fetchFromGitHub,
  fetchPypi,
  fetchpatch,
  python313,
  replaceVars,
  ffmpeg-headless,
@@ -292,7 +293,7 @@ let
  extraBuildInputs = extraPackages python.pkgs;

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

in
python.pkgs.buildPythonApplication rec {
@@ -313,13 +314,13 @@ python.pkgs.buildPythonApplication rec {
    owner = "home-assistant";
    repo = "core";
    tag = version;
    hash = "sha256-39OY9lKlqnv3QdIdJ698cMTBrF41SxbqQfz6N32mD5s=";
    hash = "sha256-o4rpdnO/TslJWRj7HwTyWOS0NBVOfAeDfWiYvlx/jhw=";
  };

  # Secondary source is pypi sdist for translations
  sdist = fetchPypi {
    inherit pname version;
    hash = "sha256-W9xuWfz9lCQXaPg+O313mzMxvBfY64CrU7vwNjra/3k=";
    hash = "sha256-j10a2GSnFau6KYMpFrFCrCTqsmy/D5p6BwQMvlOEe+w=";
  };

  build-system = with python.pkgs; [
@@ -345,6 +346,12 @@ python.pkgs.buildPythonApplication rec {
    (replaceVars ./patches/ffmpeg-path.patch {
      ffmpeg = "${lib.getExe ffmpeg-headless}";
    })

    (fetchpatch {
      # [2025.11.2] fix matter snapshots
      url = "https://github.com/home-assistant/core/commit/04458e01be0748c3f6c980e126d5238d1ca915b6.patch";
      hash = "sha256-gzc0KmSZhOfHVRhIVmOTFTJMI+pAX+8LcOit4JUypyA=";
    })
  ];

  postPatch = ''