Unverified Commit 3bc43c2e authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

python313Packages.letpot: init at 0.3.0 (#377393)

parents 150f7f5e f0a86fd9
Loading
Loading
Loading
Loading
+43 −0
Original line number Diff line number Diff line
{
  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 −0
Original line number Diff line number Diff line
@@ -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 { };