python313Packages.livisi: init at 0.0.24

This commit is contained in:
Robert Schütz
2025-01-09 03:44:27 -08:00
parent 2a0e6869da
commit 136f6a701f
2 changed files with 44 additions and 0 deletions
@@ -0,0 +1,42 @@
{
aiohttp,
buildPythonPackage,
colorlog,
fetchFromGitHub,
lib,
setuptools,
websockets,
}:
buildPythonPackage rec {
pname = "livisi";
version = "0.0.24";
pyproject = true;
src = fetchFromGitHub {
owner = "planbnet";
repo = "livisi";
tag = "v${version}";
hash = "sha256-ggEbzN9FfqT968hgOblIh5dfVibzgUEc4SoZfBGOCwo=";
};
build-system = [ setuptools ];
dependencies = [
aiohttp
colorlog
websockets
];
pythonImportsCheck = [ "livisi" ];
# upstream has no tests
doCheck = false;
meta = {
description = "Connection library for the abandoned Livisi Smart Home system";
homepage = "https://github.com/planbnet/livisi";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
+2
View File
@@ -7540,6 +7540,8 @@ self: super: with self; {
livereload = callPackage ../development/python-modules/livereload { };
livisi = callPackage ../development/python-modules/livisi { };
lizard = callPackage ../development/python-modules/lizard { };
llama-cpp-python = callPackage ../development/python-modules/llama-cpp-python { };