From 130fe9babca5092ed6328534434c0741eec273dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 7 Jan 2026 09:14:30 -0800 Subject: [PATCH] python3Packages.heatmiserv3: 2.0.3 -> 2.0.6 Diff: https://github.com/andylockran/heatmiserV3/compare/2.0.3...2.0.6 --- .../python-modules/heatmiserv3/default.nix | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/heatmiserv3/default.nix b/pkgs/development/python-modules/heatmiserv3/default.nix index ee926a0bebbc..f498091e3b03 100644 --- a/pkgs/development/python-modules/heatmiserv3/default.nix +++ b/pkgs/development/python-modules/heatmiserv3/default.nix @@ -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 ];