python3Packages.pyaqvify: init at 0.0.12

This commit is contained in:
Jamie Magee
2026-07-08 13:50:43 -07:00
parent ab7f967b6c
commit 38e9cfacee
2 changed files with 38 additions and 0 deletions
@@ -0,0 +1,36 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
aiohttp,
}:
buildPythonPackage (finalAttrs: {
pname = "pyaqvify";
version = "0.0.12";
pyproject = true;
src = fetchFromGitHub {
owner = "astrandb";
repo = "pyaqvify";
tag = "v${finalAttrs.version}";
hash = "sha256-ZSSr7cWDvPxVq8YIqCPpE+nxrk/UHuNGZ/muyiGyp/c=";
};
build-system = [ setuptools ];
dependencies = [ aiohttp ];
pythonImportsCheck = [ "pyaqvify" ];
doCheck = false; # no tests
meta = {
description = "Python async library for Aqvify integration with Home Assistant";
homepage = "https://github.com/astrandb/pyaqvify";
changelog = "https://github.com/astrandb/pyaqvify/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
})
+2
View File
@@ -14024,6 +14024,8 @@ self: super: with self; {
pyaprilaire = callPackage ../development/python-modules/pyaprilaire { };
pyaqvify = callPackage ../development/python-modules/pyaqvify { };
pyarlo = callPackage ../development/python-modules/pyarlo { };
pyarr = callPackage ../development/python-modules/pyarr { };