python3Packages.pyintelliclima: init at 0.2.2

This commit is contained in:
Jamie Magee
2026-03-26 20:55:44 -07:00
parent ef2397a2ef
commit 6ac07b573d
2 changed files with 53 additions and 0 deletions
@@ -0,0 +1,51 @@
{
lib,
aiohttp,
buildPythonPackage,
dacite,
fetchFromGitHub,
hatchling,
pytest-asyncio,
pytestCheckHook,
uv-dynamic-versioning,
}:
buildPythonPackage (finalAttrs: {
pname = "pyintelliclima";
version = "0.2.2";
pyproject = true;
src = fetchFromGitHub {
owner = "dvdinth";
repo = "pyintelliclima";
tag = "v${finalAttrs.version}";
hash = "sha256-gfOfEc39o4JAdvr6GI9ly5AuRV+sseCvWY/jNAh1A5M=";
};
pythonRelaxDeps = [ "dacite" ];
build-system = [
hatchling
uv-dynamic-versioning
];
dependencies = [
aiohttp
dacite
];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
];
pythonImportsCheck = [ "pyintelliclima" ];
meta = {
description = "Python module for a HTTP API to communicate with the IntelliClima device server";
homepage = "https://github.com/dvdinth/pyintelliclima";
changelog = "https://github.com/dvdinth/pyintelliclima/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
})
+2
View File
@@ -13960,6 +13960,8 @@ self: super: with self; {
pyinstrument = callPackage ../development/python-modules/pyinstrument { };
pyintelliclima = callPackage ../development/python-modules/pyintelliclima { };
pyinterp = callPackage ../development/python-modules/pyinterp { };
pyintesishome = callPackage ../development/python-modules/pyintesishome { };