python3Packages.pyairobotrest: init at 0.1.0

This commit is contained in:
Robert Schütz
2025-12-01 22:19:55 -08:00
parent 6ad9fa4566
commit 35f9cb43d0
2 changed files with 45 additions and 0 deletions
@@ -0,0 +1,43 @@
{
aiohttp,
buildPythonPackage,
fetchFromGitHub,
lib,
pytest-asyncio,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "pyairobotrest";
version = "0.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "mettolen";
repo = "pyairobotrest";
tag = "v${version}";
hash = "sha256-MqZV8+uwKLIbh0A/lYMB/9iPDl/8a4IAoYMdoxiIJqY=";
};
build-system = [ setuptools ];
dependencies = [
aiohttp
];
pythonImportsCheck = [ "pyairobotrest" ];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
];
meta = {
changelog = "https://github.com/mettolen/pyairobotrest/blob/${src.tag}/CHANGELOG.md";
description = "Python library for controlling Airobot TE1 thermostats via local REST API";
homepage = "https://github.com/mettolen/pyairobotrest";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.dotlambda ];
};
}
+2
View File
@@ -12797,6 +12797,8 @@ self: super: with self; {
pyairnow = callPackage ../development/python-modules/pyairnow { };
pyairobotrest = callPackage ../development/python-modules/pyairobotrest { };
pyairports = callPackage ../development/python-modules/pyairports { };
pyairtable = callPackage ../development/python-modules/pyairtable { };