python3Packages.python-aidot: init at 0.3.53 (#529004)

This commit is contained in:
Martin Weinelt
2026-06-07 03:00:06 +00:00
committed by GitHub
3 changed files with 45 additions and 1 deletions
@@ -0,0 +1,40 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
aiohttp,
cryptography,
requests,
}:
buildPythonPackage (finalAttrs: {
pname = "python-aidot";
version = "0.3.53";
pyproject = true;
src = fetchFromGitHub {
owner = "AiDot-Development-Team";
repo = "python-AiDot";
tag = "v${finalAttrs.version}";
hash = "sha256-Wo3eadMg1HxMjoGpiDSUImw36qN3zC5QrIAaEwdvbS8=";
};
build-system = [ setuptools ];
dependencies = [
aiohttp
cryptography
requests
];
pythonImportsCheck = [ "aidot" ];
meta = {
description = "Control the WiFi lights of AIDOT in the local area network";
homepage = "https://github.com/AiDot-Development-Team/python-AiDot";
changelog = "https://github.com/AiDot-Development-Team/python-AiDot/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
})
@@ -103,7 +103,8 @@
];
"aidot" =
ps: with ps; [
]; # missing inputs: python-aidot
python-aidot
];
"air_quality" =
ps: with ps; [
];
@@ -7735,6 +7736,7 @@
"aftership"
"agent_dvr"
"ai_task"
"aidot"
"air_quality"
"airgradient"
"airly"
+2
View File
@@ -15818,6 +15818,8 @@ self: super: with self; {
pythinkingcleaner = callPackage ../development/python-modules/pythinkingcleaner { };
python-aidot = callPackage ../development/python-modules/python-aidot { };
python-aodhclient = callPackage ../development/python-modules/python-aodhclient { };
python-apt = callPackage ../development/python-modules/python-apt { };