python3Packages.python-aidot: init at 0.3.53

This commit is contained in:
Jamie Magee
2026-06-06 19:33:36 -07:00
parent 92840095e6
commit dff8c11a76
2 changed files with 42 additions and 0 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 ];
};
})
+2
View File
@@ -15816,6 +15816,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 { };