python3Packages.visionpluspython: init at 1.0.2 (#491163)

This commit is contained in:
Martin Weinelt
2026-02-17 16:53:33 +00:00
committed by GitHub
3 changed files with 43 additions and 1 deletions
@@ -0,0 +1,38 @@
{
lib,
aiohttp,
buildPythonPackage,
fetchPypi,
pyjwt,
setuptools,
}:
buildPythonPackage rec {
pname = "visionpluspython";
version = "1.0.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-9tHjRWMVxi1diPlKGPXLRgi5rkuAXskStUBIqfO0oh4=";
};
build-system = [ setuptools ];
dependencies = [
aiohttp
pyjwt
];
# no tests
doCheck = false;
pythonImportsCheck = [ "visionpluspython" ];
meta = {
description = "Python API wrapper for Watts Vision+ smart home system";
homepage = "https://github.com/Watts-Digital/visionpluspython";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jamiemagee ];
};
}
@@ -6772,7 +6772,8 @@
python-matter-server
pyturbojpeg
securetar
]; # missing inputs: visionpluspython
visionpluspython
];
"watttime" =
ps: with ps; [
aiowatttime
@@ -8131,6 +8132,7 @@
"water_heater"
"waterfurnace"
"watergate"
"watts"
"watttime"
"waze_travel_time"
"weather"
+2
View File
@@ -20486,6 +20486,8 @@ self: super: with self; {
viser = callPackage ../development/python-modules/viser { };
visionpluspython = callPackage ../development/python-modules/visionpluspython { };
visions = callPackage ../development/python-modules/visions { };
visitor = callPackage ../development/python-modules/visitor { };