Unverified Commit 71f753e1 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

home-assistant: 2026.1.2 -> 2026.1.3 (#483194)

parents 2aacce89 dfce6147
Loading
Loading
Loading
Loading
+6 −7
Original line number Diff line number Diff line
@@ -406,15 +406,14 @@ in
            http = {
              # https://www.home-assistant.io/integrations/http/
              server_host = mkOption {
                type = types.nullOr (types.either types.str (types.listOf types.str));
                default = null;
                example = [
                  "::1"
                  "127.0.0.1"
                type = types.either types.str (types.listOf types.str);
                default = [
                  "0.0.0.0"
                  "::"
                ];
                example = "::1";
                description = ''
                  Only listen to incoming requests on specific IP/host.
                  The option is unset by default, meaning that Home Assistant listens on all available addresses.
                  Only listen to incoming requests on specific IP/host. The default listed assumes support for IPv4 and IPv6.
                '';
              };

+2 −2
Original line number Diff line number Diff line
@@ -7,13 +7,13 @@

buildPythonPackage rec {
  pname = "insteon-frontend-home-assistant";
  version = "0.6.0";
  version = "0.6.1";
  pyproject = true;

  src = fetchPypi {
    pname = "insteon_frontend_home_assistant";
    inherit version;
    hash = "sha256-oBTk7gblJA6/w0wSx+efdEmY5ioJiRMUfDqjyg0LkFg=";
    hash = "sha256-r6xXEZFAGgXByl+urpXfzhuCedBPjqkwT8Q0sEHQA2w=";
  };

  nativeBuildInputs = [ setuptools ];
+2 −2
Original line number Diff line number Diff line
@@ -15,14 +15,14 @@

buildPythonPackage rec {
  pname = "music-assistant-client";
  version = "1.3.2";
  version = "1.3.3";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "music-assistant";
    repo = "client";
    tag = version;
    hash = "sha256-7u7P3uYFxx1UFzPIOgo0fCEEJrEEdBbBE7INhinkgLQ=";
    hash = "sha256-f5+25MWuovG/g3PscWt0jls/5Y/Qdt2kq9Ai7/9P4aI=";
  };

  postPatch = ''
+2 −2
Original line number Diff line number Diff line
@@ -22,14 +22,14 @@ buildPythonPackage rec {
  pname = "music-assistant-models";
  # Must be compatible with music-assistant-client package
  # nixpkgs-update: no auto update
  version = "1.1.70";
  version = "1.1.89";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "music-assistant";
    repo = "models";
    tag = version;
    hash = "sha256-yJ0MaXbzhvbqdMA1M2l7QC+0ExAHuTU1N4XIkJOj6pg=";
    hash = "sha256-/eNCgAB5G8g1r2fcW27lySEqg+q/1bJvwwyntigGWjo=";
  };

  postPatch = ''
+2 −2
Original line number Diff line number Diff line
@@ -15,14 +15,14 @@

buildPythonPackage (finalAttrs: {
  pname = "opower";
  version = "0.16.4";
  version = "0.16.5";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "tronikos";
    repo = "opower";
    tag = "v${finalAttrs.version}";
    hash = "sha256-r1evfPKvuMXlOvpwqqOSyC80TpZWphYhDVQCi9IiI+8=";
    hash = "sha256-MeHM6ro6SNz9w4PTCJhc3zZAIkXKujthEJaq9A5zbI8=";
  };

  build-system = [ setuptools ];
Loading