From fa3ce8cb22ab096b8f4113d266887940f85d7d5e Mon Sep 17 00:00:00 2001 From: Jamie Magee Date: Thu, 4 Jun 2026 21:33:34 -0700 Subject: [PATCH] python3Packages.aioaquarite: init at 0.6.1 --- .../python-modules/aioaquarite/default.nix | 43 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 45 insertions(+) create mode 100644 pkgs/development/python-modules/aioaquarite/default.nix diff --git a/pkgs/development/python-modules/aioaquarite/default.nix b/pkgs/development/python-modules/aioaquarite/default.nix new file mode 100644 index 000000000000..0321f73919d4 --- /dev/null +++ b/pkgs/development/python-modules/aioaquarite/default.nix @@ -0,0 +1,43 @@ +{ + lib, + buildPythonPackage, + fetchFromGitHub, + setuptools, + aiohttp, + google-auth, + google-cloud-firestore, + pytestCheckHook, +}: + +buildPythonPackage (finalAttrs: { + pname = "aioaquarite"; + version = "0.6.1"; + pyproject = true; + + src = fetchFromGitHub { + owner = "fdebrus"; + repo = "aioaquarite"; + tag = "v${finalAttrs.version}"; + hash = "sha256-pf/a0W1Ix/3Cd6dMUvHqb6DwT56PvtSf/GpicrL8y1A="; + }; + + build-system = [ setuptools ]; + + dependencies = [ + aiohttp + google-auth + google-cloud-firestore + ]; + + nativeCheckInputs = [ pytestCheckHook ]; + + pythonImportsCheck = [ "aioaquarite" ]; + + meta = { + description = "Async Python client for the Hayward Aquarite pool API"; + homepage = "https://github.com/fdebrus/aioaquarite"; + changelog = "https://github.com/fdebrus/aioaquarite/releases/tag/${finalAttrs.src.tag}"; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.jamiemagee ]; + }; +}) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 57f3a030a9da..9ab9df6a427c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -216,6 +216,8 @@ self: super: with self; { aioaquacell = callPackage ../development/python-modules/aioaquacell { }; + aioaquarite = callPackage ../development/python-modules/aioaquarite { }; + aioaseko = callPackage ../development/python-modules/aioaseko { }; aioasuswrt = callPackage ../development/python-modules/aioasuswrt { };