This commit is contained in:
mjallen18
2025-08-23 10:26:12 -05:00
parent a96b8ddf86
commit bc18b0775b
43 changed files with 796 additions and 177 deletions

View File

@@ -0,0 +1,30 @@
{
buildHomeAssistantComponent,
fetchFromGitHub,
pkgs,
# namespace,
...
}:
buildHomeAssistantComponent rec {
owner = "HASwitchPlate";
domain = "openhasp";
version = "0.7.6";
src = fetchFromGitHub {
owner = owner;
repo = "openHASP-custom-component";
rev = version;
hash = "sha256-9IGZO+o9v6xyPbHRxBwmsGsryVwaB+fFXsK2kn5ztnA=";
};
propagatedBuildInputs = with pkgs.python3Packages; [
jsonschema
];
meta = {
changelog = "https://github.com/HASwitchPlate/openHASP-custom-component/releases/tag/${version}";
description = "This custom component simplifies synchronization of objects on one or more openHASP";
homepage = "https://github.com/HASwitchPlate/openHASP-custom-component";
maintainers = [ ];
};
}