python313Packages.pyhomee: init at 1.2.5

This commit is contained in:
Robert Schütz
2025-02-02 11:37:00 -08:00
parent 14e6ebd47b
commit 062e6ffec7
2 changed files with 43 additions and 0 deletions
@@ -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 ];
};
}
+2
View File
@@ -11941,6 +11941,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 { };