ha-mcp: 7.7.0 -> 7.8.0; home-assistant-custom-components.ha_mcp_tools: inherit src & version from ha-mcp (#532816)

This commit is contained in:
Martin Weinelt
2026-06-18 23:12:10 +00:00
committed by GitHub
2 changed files with 5 additions and 12 deletions
+2 -2
View File
@@ -7,14 +7,14 @@
python3Packages.buildPythonApplication (finalAttrs: {
pname = "ha-mcp";
version = "7.7.0";
version = "7.8.0";
pyproject = true;
src = fetchFromGitHub {
owner = "homeassistant-ai";
repo = "ha-mcp";
tag = "v${finalAttrs.version}";
hash = "sha256-Gp4C3SRNkgv9GfLkVx/VCMp4/kCORHsp87IHcCaCPKk=";
hash = "sha256-+HhtHeSQlK1jd/4/x1d54Etvrs8e+pQkIGvJV39ZZBw=";
};
build-system = with python3Packages; [
@@ -1,22 +1,15 @@
{
lib,
buildHomeAssistantComponent,
fetchFromGitHub,
ha-mcp,
nix-update-script,
ruamel-yaml,
}:
buildHomeAssistantComponent rec {
owner = "homeassistant-ai";
domain = "ha_mcp_tools";
version = "7.7.0";
src = fetchFromGitHub {
owner = "homeassistant-ai";
repo = "ha-mcp";
tag = "v${version}";
hash = "sha256-Gp4C3SRNkgv9GfLkVx/VCMp4/kCORHsp87IHcCaCPKk=";
};
inherit (ha-mcp) version src;
inherit (ha-mcp.src) owner;
dependencies = [
ruamel-yaml