home-assistant-custom-components.versatile_thermostat: 8.3.2 -> 8.5.0

https://github.com/jmcollin78/versatile_thermostat/releases/tag/8.5.0
This commit is contained in:
Martin Weinelt
2026-01-08 02:43:17 -08:00
committed by Robert Schütz
parent 70538a857f
commit 0b22b8ce85
@@ -2,21 +2,28 @@
buildHomeAssistantComponent,
fetchFromGitHub,
lib,
numpy,
scipy,
gitUpdater,
}:
buildHomeAssistantComponent rec {
owner = "jmcollin78";
domain = "versatile_thermostat";
version = "8.3.2";
version = "8.5.0";
src = fetchFromGitHub {
inherit owner;
repo = domain;
rev = "refs/tags/${version}";
hash = "sha256-kHDLFxhrGTCpqkTvvjbplYSqXbrmN9KPhQuszTtoGQc=";
hash = "sha256-YTil0wFniMbTUjM62oJS6wnGvhaHUlcUSJvsasmlrXw=";
};
dependencies = [
numpy
scipy
];
passthru.updateScript = gitUpdater { ignoredVersions = "(Alpha|Beta|alpha|beta).*"; };
meta = {