python3Packages.eurotronic-cometblue-ha: init at 1.4.0 (#518585)

This commit is contained in:
Martin Weinelt
2026-05-10 13:21:22 +00:00
committed by GitHub
3 changed files with 46 additions and 1 deletions
@@ -0,0 +1,41 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
pdm-backend,
bleak,
bleak-retry-connector,
}:
buildPythonPackage (finalAttrs: {
pname = "eurotronic-cometblue-ha";
version = "1.4.0";
pyproject = true;
src = fetchFromGitHub {
owner = "rikroe";
repo = "eurotronic-cometblue";
tag = "v${finalAttrs.version}";
hash = "sha256-j3UuN0Cmb2mOo3QGqy0wu19+vRyMahclXKyka2Vy10w=";
};
build-system = [ pdm-backend ];
dependencies = [
bleak
bleak-retry-connector
];
# Tests require a real Bluetooth Comet Blue device.
doCheck = false;
pythonImportsCheck = [ "eurotronic_cometblue_ha" ];
meta = {
description = "Python client for Eurotronic GmbH BLE Comet (and rebranded) Radiator TRVs";
homepage = "https://github.com/rikroe/eurotronic-cometblue";
changelog = "https://github.com/rikroe/eurotronic-cometblue/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
})
@@ -1761,9 +1761,10 @@
bluetooth-auto-recovery
bluetooth-data-tools
dbus-fast
eurotronic-cometblue-ha
habluetooth
serialx
]; # missing inputs: eurotronic-cometblue-ha
];
"event" =
ps: with ps; [
];
@@ -7688,6 +7689,7 @@
"esphome"
"essent"
"eufylife_ble"
"eurotronic_cometblue"
"event"
"everlights"
"evil_genius_labs"
+2
View File
@@ -5184,6 +5184,8 @@ self: super: with self; {
euporie = callPackage ../development/python-modules/euporie { };
eurotronic-cometblue-ha = callPackage ../development/python-modules/eurotronic-cometblue-ha { };
eval-type-backport = callPackage ../development/python-modules/eval-type-backport { };
evaluate = callPackage ../development/python-modules/evaluate { };