python3Packages.redgtech-api: init at 0.1.38

This commit is contained in:
Jamie Magee
2026-03-23 10:30:39 -07:00
parent 27298c9e65
commit e4809bd2c2
2 changed files with 39 additions and 0 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 ];
};
})
+2
View File
@@ -16590,6 +16590,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 { };