python313Packages.pyhomee: init at 1.2.5 (#378915)

This commit is contained in:
Sandro
2025-02-02 21:28:19 +01:00
committed by GitHub
2 changed files with 43 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
{
aiohttp,
buildPythonPackage,
fetchFromGitHub,
lib,
setuptools,
websockets,
}:
buildPythonPackage rec {
pname = "pyhomee";
version = "1.2.5";
pyproject = true;
src = fetchFromGitHub {
owner = "Taraman17";
repo = "pyHomee";
tag = "v${version}";
hash = "sha256-cwiV2GvoWeFQ4YrwwHW7ZHk2ZjvBKSAff4xY7+iUpAk=";
};
build-system = [ setuptools ];
dependencies = [
aiohttp
websockets
];
pythonImportsCheck = [ "pyHomee" ];
# upstream has no tests
doCheck = false;
meta = {
changelog = "https://github.com/Taraman17/pyHomee/blob/${src.tag}/CHANGELOG.md";
description = "Python library to interact with homee";
homepage = "https://github.com/Taraman17/pyHomee";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}

View File

@@ -11943,6 +11943,8 @@ self: super: with self; {
pyhocon = callPackage ../development/python-modules/pyhocon { };
pyhomee = callPackage ../development/python-modules/pyhomee { };
pyhomematic = callPackage ../development/python-modules/pyhomematic { };
pyhomepilot = callPackage ../development/python-modules/pyhomepilot { };