python3Packages.redgtech-api: init at 0.1.38
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
})
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user