python3Packages.eurotronic-cometblue-ha: init at 1.4.0

This commit is contained in:
Jamie Magee
2026-05-09 22:23:11 -07:00
parent e8c3e414a6
commit 29df146b4e
2 changed files with 43 additions and 0 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 ];
};
})
+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 { };