fix package

This commit is contained in:
mjallen18
2025-07-28 11:26:44 -05:00
parent c8f5547727
commit c7c99b339b

View File

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