home-assistant custom component omnik_inverter: init at v2.6.4 (#296085)

This commit is contained in:
9R 2024-03-15 15:01:40 +01:00 committed by GitHub
parent 99f728d536
commit 8cac26901a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 34 additions and 0 deletions

View File

@ -18,6 +18,8 @@
miele = callPackage ./miele {};
omnik_inverter = callPackage ./omnik_inverter {};
prometheus_sensor = callPackage ./prometheus_sensor {};
waste_collection_schedule = callPackage ./waste_collection_schedule {};

View File

@ -0,0 +1,32 @@
{ lib
, fetchFromGitHub
, buildHomeAssistantComponent
, omnikinverter
}:
buildHomeAssistantComponent rec {
owner = "robbinjanssen";
domain = "omnik_inverter";
version = "2.6.4";
src = fetchFromGitHub {
owner = "robbinjanssen";
repo = "home-assistant-omnik-inverter";
rev = "refs/tags/v${version}";
hash = "sha256-O1NxT7u27xLydPqEqH72laU0tlYVrMPo0TwWIVNJ+0Q=";
};
propagatedBuildInputs = [
omnikinverter
];
doCheck = false; # no tests
meta = with lib; {
changelog = "https://github.com/robbinjanssen/home-assistant-omnik-inverter/releases/tag/v${version}";
description = "The Omnik Inverter integration will scrape data from an Omnik inverter connected to your local network";
homepage = "https://github.com/robbinjanssen/home-assistant-omnik-inverter";
maintainers = with maintainers; [ _9R ];
license = licenses.mit;
};
}