python3Packages.webio-api: init at 0.1.11 (#436658)

This commit is contained in:
Martin Weinelt
2025-08-28 22:46:17 +02:00
committed by GitHub
3 changed files with 40 additions and 1 deletions
@@ -0,0 +1,35 @@
{
lib,
buildPythonPackage,
fetchPypi,
aiohttp,
setuptools,
}:
buildPythonPackage rec {
pname = "webio-api";
version = "0.1.11";
pyproject = true;
src = fetchPypi {
pname = "webio_api";
inherit version;
hash = "sha256-fPlAWu/P9gOjlQ62qAesLcLkNznAiMAAqxAlQi9oxZk=";
};
build-system = [ setuptools ];
dependencies = [ aiohttp ];
# Package has no tests
doCheck = false;
pythonImportsCheck = [ "webio_api" ];
meta = {
description = "Simple API to use for communication with WebIO device meant for Home Assistant integration";
homepage = "https://github.com/nasWebio/webio_api";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
@@ -3897,7 +3897,8 @@
];
"nasweb" =
ps: with ps; [
]; # missing inputs: webio-api
webio-api
];
"national_grid_us" =
ps: with ps; [
];
@@ -7460,6 +7461,7 @@
"nam"
"namecheapdns"
"nanoleaf"
"nasweb"
"neato"
"ness_alarm"
"nest"
+2
View File
@@ -19821,6 +19821,8 @@ self: super: with self; {
webidl = callPackage ../development/python-modules/webidl { };
webio-api = callPackage ../development/python-modules/webio-api { };
weblate-language-data = callPackage ../development/python-modules/weblate-language-data { };
weblate-schemas = callPackage ../development/python-modules/weblate-schemas { };