python3Packages.heatmiserv3: 2.0.3 -> 2.0.6

Diff: https://github.com/andylockran/heatmiserV3/compare/2.0.3...2.0.6
This commit is contained in:
Robert Schütz
2026-01-08 00:52:30 +01:00
committed by Martin Weinelt
parent 4706a7749d
commit 130fe9babc
@@ -2,34 +2,38 @@
appdirs,
buildPythonPackage,
fetchFromGitHub,
hatchling,
importlib-resources,
lib,
poetry-core,
pyserial,
pyserial-asyncio,
pytestCheckHook,
pyyaml,
}:
buildPythonPackage rec {
pname = "heatmiserv3";
version = "2.0.3";
version = "2.0.6";
pyproject = true;
src = fetchFromGitHub {
owner = "andylockran";
repo = "heatmiserV3";
tag = version;
hash = "sha256-Ia0QUMDvuvn2af52lW7ObSQ9MSPNOgWyBuFBnqfYrpM=";
hash = "sha256-mwzW52g3Uz7zxL9R5zePDyxMSramEiaiVm6VPlNyNts=";
};
build-system = [ poetry-core ];
build-system = [ hatchling ];
pythonRemoveDeps = [
# https://github.com/andylockran/heatmiserV3/pull/113
"pytest"
"pytest-cov"
];
dependencies = [
appdirs
importlib-resources
pyserial
pyserial-asyncio
pyyaml
];