mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
home-assistant-custom-components.solis-sensor: init at 3.6.0
This commit is contained in:
parent
dd6c0ee128
commit
f7b65f2290
@ -58,6 +58,8 @@
|
||||
|
||||
smartthinq-sensors = callPackage ./smartthinq-sensors {};
|
||||
|
||||
solis-sensor = callPackage ./solis-sensor {};
|
||||
|
||||
somweb = callPackage ./somweb {};
|
||||
|
||||
spook = callPackage ./spook {};
|
||||
|
@ -0,0 +1,28 @@
|
||||
{
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
buildHomeAssistantComponent,
|
||||
aiofiles,
|
||||
}:
|
||||
|
||||
buildHomeAssistantComponent rec {
|
||||
owner = "hultenvp";
|
||||
domain = "solis";
|
||||
version = "3.6.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "hultenvp";
|
||||
repo = "solis-sensor";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-DIUhUN1UfyXptaldJBsQEsImEnQqi4zFFKp70yXxDSk=";
|
||||
};
|
||||
|
||||
dependencies = [ aiofiles ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Home Assistant integration for the SolisCloud PV Monitoring portal via SolisCloud API";
|
||||
homepage = "https://github.com/hultenvp/solis-sensor";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ jnsgruk ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user