python3Packages.homelink-integration-api: init at 0.0.1

This commit is contained in:
Jamie Magee
2026-02-22 20:53:09 -08:00
parent 56d662f5e3
commit e2fcdb64ed
2 changed files with 51 additions and 0 deletions
@@ -0,0 +1,49 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
aiofiles,
aiohttp,
boto3,
paho-mqtt,
pyopenssl,
python-decouple,
}:
buildPythonPackage (finalAttrs: {
pname = "homelink-integration-api";
version = "0.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "Gentex-Corporation";
repo = "homelink-integration-api";
tag = "v${finalAttrs.version}";
hash = "sha256-ELEqx41JSAmXBEowwJ1tYPZV40hMjswaHQonD+1IG5E=";
};
build-system = [ setuptools ];
dependencies = [
aiofiles
aiohttp
boto3
paho-mqtt
pyopenssl
python-decouple
];
# upstream tests require network access and AWS credentials
doCheck = false;
pythonImportsCheck = [ "homelink" ];
meta = {
description = "API to interact with Homelink cloud for MQTT-enabled smart home platforms";
homepage = "https://github.com/Gentex-Corporation/homelink-integration-api";
changelog = "https://github.com/Gentex-Corporation/homelink-integration-api/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
})
+2
View File
@@ -7011,6 +7011,8 @@ self: super: with self; {
homeconnect = callPackage ../development/python-modules/homeconnect { };
homelink-integration-api = callPackage ../development/python-modules/homelink-integration-api { };
homematicip = callPackage ../development/python-modules/homematicip { };
homepluscontrol = callPackage ../development/python-modules/homepluscontrol { };