Unverified Commit 062fbf34 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

home-assistant: 2026.1.0 -> 2026.1.1 (#479335)

parents e3d1609c 98c33003
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@

buildPythonPackage rec {
  pname = "zha-quirks";
  version = "0.0.151";
  version = "0.0.152";
  pyproject = true;

  disabled = pythonOlder "3.12";
@@ -22,7 +22,7 @@ buildPythonPackage rec {
    owner = "zigpy";
    repo = "zha-device-handlers";
    tag = version;
    hash = "sha256-eB4Xmkbueig9UgGs0d9WLGFLQ20XiCdFtI4KKa8frJw=";
    hash = "sha256-b0px65f/M1Lm7FUh6NLnF90tK5FKytMEPHdMenrpsso=";
  };

  postPatch = ''
+2 −2
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@

buildPythonPackage rec {
  pname = "zha";
  version = "0.0.83";
  version = "0.0.84";
  pyproject = true;

  disabled = pythonOlder "3.12";
@@ -32,7 +32,7 @@ buildPythonPackage rec {
    owner = "zigpy";
    repo = "zha";
    tag = version;
    hash = "sha256-/poB5dkD5bta/GWOah6+bz+w++C1NWf649TUzqvDfU0=";
    hash = "sha256-CoV2EOlbLVmcr7dfHi63oFLMzCMf2P3vc+CoaOAu1FQ=";
  };

  postPatch = ''
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
# Do not edit!

{
  version = "2026.1.0";
  version = "2026.1.1";
  components = {
    "3_day_blinds" =
      ps: with ps; [
+4 −4
Original line number Diff line number Diff line
@@ -293,13 +293,13 @@ let
  extraBuildInputs = extraPackages python.pkgs;

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

in
python.pkgs.buildPythonApplication rec {
  pname = "homeassistant";
  version =
    #assert (componentPackages.version == hassVersion);
    assert (componentPackages.version == hassVersion);
    hassVersion;
  pyproject = true;

@@ -314,13 +314,13 @@ python.pkgs.buildPythonApplication rec {
    owner = "home-assistant";
    repo = "core";
    tag = version;
    hash = "sha256-LoB8hm5ruC6kvulHmtYxbJ6JkkTmgzCbiyBjVdaHFGI=";
    hash = "sha256-l2/mi/WfZ3PbuB7LEhpWkubsY1xMyUjeolxPDHYEXWU=";
  };

  # Secondary source is pypi sdist for translations
  sdist = fetchPypi {
    inherit pname version;
    hash = "sha256-D6p/pMN7jM8e7ckXlMaQQvj4VZ8ufCBfHCeQaCYr3sY=";
    hash = "sha256-Ll1wwcdkH/A2N8M1ZuE1RvjNFRu6ipEyuy4Th34s/Uo=";
  };

  build-system = with python.pkgs; [
+2 −2
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@ 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 = "20260107.0";
  version = "20260107.1";
  format = "wheel";

  src = fetchPypi {
@@ -17,7 +17,7 @@ buildPythonPackage rec {
    pname = "home_assistant_frontend";
    dist = "py3";
    python = "py3";
    hash = "sha256-bRkcIoy12gaHNZdRypFdaArsZiM/5Sm4YNMUD1AMYUI=";
    hash = "sha256-P/7ZKtNwZZN7klPNISxOjfsdbk2KzFzGbTM5H44we7I=";
  };

  # there is nothing to strip in this package
Loading