python3Packages.hueble: init at 1.0.8

This commit is contained in:
Robert Schütz
2025-12-03 10:44:30 -08:00
parent 75954c1e8c
commit 25796aa3ca
2 changed files with 43 additions and 0 deletions
@@ -0,0 +1,41 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
bleak,
bleak-retry-connector,
}:
buildPythonPackage rec {
pname = "hueble";
version = "1.0.8";
pyproject = true;
src = fetchFromGitHub {
owner = "flip-dots";
repo = "HueBLE";
tag = "v${version}";
hash = "sha256-4/NB9dPidsvWXb+H5cK7STfdTfnRgh2W0l2bBCLq/ks=";
};
build-system = [ setuptools ];
dependencies = [
bleak
bleak-retry-connector
];
pythonImportsCheck = [ "HueBLE" ];
# upstream has no tests
doCheck = false;
meta = {
changelog = "https://github.com/flip-dots/HueBLE/blob/${src.tag}/CHANGELOG.rst";
description = "Python module for controlling Bluetooth Philips Hue lights";
homepage = "https://github.com/flip-dots/HueBLE";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.dotlambda ];
};
}
+2
View File
@@ -6979,6 +6979,8 @@ self: super: with self; {
huawei-lte-api = callPackage ../development/python-modules/huawei-lte-api { };
hueble = callPackage ../development/python-modules/hueble { };
huepy = callPackage ../development/python-modules/huepy { };
huey = callPackage ../development/python-modules/huey { };