python313Packages.pyhomee: init at 1.2.5 (#378915)
This commit is contained in:
41
pkgs/development/python-modules/pyhomee/default.nix
Normal file
41
pkgs/development/python-modules/pyhomee/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user