python313Packages.letpot: init at 0.3.0 (#377393)

This commit is contained in:
OTABI Tomoya
2025-01-29 22:25:24 +09:00
committed by GitHub
2 changed files with 45 additions and 0 deletions
@@ -0,0 +1,43 @@
{
aiohttp,
aiomqtt,
buildPythonPackage,
fetchFromGitHub,
lib,
poetry-core,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "letpot";
version = "0.3.0";
pyproject = true;
src = fetchFromGitHub {
owner = "jpelgrom";
repo = "python-letpot";
tag = "v${version}";
hash = "sha256-OFLQ0DV7roqUlm6zJWAzMRpcmAi/oco8lEHbmfqNaVs=";
};
build-system = [ poetry-core ];
dependencies = [
aiohttp
aiomqtt
];
pythonImportsCheck = [ "letpot" ];
nativeCheckInputs = [
pytestCheckHook
];
meta = {
changelog = "https://github.com/jpelgrom/python-letpot/releases/tag/${src.tag}";
description = "Asynchronous Python client for LetPot hydroponic gardens";
homepage = "https://github.com/jpelgrom/python-letpot";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
+2
View File
@@ -7248,6 +7248,8 @@ self: super: with self; {
lektricowifi = callPackage ../development/python-modules/lektricowifi { };
letpot = callPackage ../development/python-modules/letpot { };
leveldb = callPackage ../development/python-modules/leveldb { };
levenshtein = callPackage ../development/python-modules/levenshtein { };