Loading pkgs/development/python-modules/letpot/default.nix 0 → 100644 +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 ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading Loading
pkgs/development/python-modules/letpot/default.nix 0 → 100644 +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 ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading