python3Packages.aioaquarite: init at 0.6.1 (#528215)

This commit is contained in:
Fabian Affolter
2026-06-05 08:11:15 +00:00
committed by GitHub
3 changed files with 48 additions and 1 deletions

View File

@@ -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 ];
};
})

View File

@@ -7188,7 +7188,8 @@
];
"vistapool" =
ps: with ps; [
]; # missing inputs: aioaquarite
aioaquarite
];
"vivotek" =
ps: with ps; [
libpyvivotek
@@ -8756,6 +8757,7 @@
"victron_gx"
"victron_remote_monitoring"
"vilfo"
"vistapool"
"vivotek"
"vizio"
"vlc_telnet"

View File

@@ -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 { };