python3Packages.redgtech-api: init at 0.1.38 (#502722)

This commit is contained in:
dotlambda
2026-03-26 03:32:28 +00:00
committed by GitHub
3 changed files with 42 additions and 1 deletions
@@ -0,0 +1,37 @@
{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "redgtech-api";
version = "0.1.38";
pyproject = true;
src = fetchFromGitHub {
owner = "redgtech-automacao";
repo = "redgtech-python-api";
tag = "v${finalAttrs.version}";
hash = "sha256-28hA0ay4oBNiJAsLPuEv7hP/V76Q/+MdwBwvAlNpO1k=";
};
build-system = [ setuptools ];
dependencies = [ aiohttp ];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "redgtech_api" ];
meta = {
description = "Python package to interact with the Redgtech API";
homepage = "https://github.com/redgtech-automacao/redgtech-python-api";
changelog = "https://github.com/redgtech-automacao/redgtech-python-api/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
})
@@ -5156,7 +5156,8 @@
];
"redgtech" =
ps: with ps; [
]; # missing inputs: redgtech-api
redgtech-api
];
"refoss" =
ps: with ps; [
refoss-ha
@@ -7980,6 +7981,7 @@
"recorder"
"recovery_mode"
"reddit"
"redgtech"
"refoss"
"rehlko"
"remember_the_milk"
+2
View File
@@ -16606,6 +16606,8 @@ self: super: with self; {
redbaron = callPackage ../development/python-modules/redbaron { };
redgtech-api = callPackage ../development/python-modules/redgtech-api { };
redis = callPackage ../development/python-modules/redis { };
redis-om = callPackage ../development/python-modules/redis-om { };