python3Packages.webio-api: init at 0.1.11

This commit is contained in:
Jamie Magee
2025-08-28 13:36:25 -07:00
parent 434576cbd5
commit a14a2d5e29
2 changed files with 37 additions and 0 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 ];
};
}
+2
View File
@@ -19769,6 +19769,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 { };