From 7beb7ce67a641619f96dc7b33f7c6221a9af2efd Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 7 Dec 2024 16:24:48 +0100 Subject: [PATCH] python312Packages.python-homewizard-energy: 6.3.0 -> 7.0.0 https://github.com/homewizard/python-homewizard-energy/releases/tag/v7.0.0 --- .../python-modules/python-homewizard-energy/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/python-homewizard-energy/default.nix b/pkgs/development/python-modules/python-homewizard-energy/default.nix index d19187bdc57d..55fa46bdee8b 100644 --- a/pkgs/development/python-modules/python-homewizard-energy/default.nix +++ b/pkgs/development/python-modules/python-homewizard-energy/default.nix @@ -9,6 +9,7 @@ multidict, poetry-core, pytest-asyncio, + pytest-cov-stub, pytestCheckHook, pythonOlder, syrupy, @@ -16,7 +17,7 @@ buildPythonPackage rec { pname = "python-homewizard-energy"; - version = "6.3.0"; + version = "7.0.0"; pyproject = true; disabled = pythonOlder "3.9"; @@ -24,8 +25,8 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "DCSBL"; repo = "python-homewizard-energy"; - rev = "refs/tags/v${version}"; - hash = "sha256-etbYZKTNdlQCDc7LXir4D7LtRzYx9jhXZc1bJvsEb8E="; + tag = "v${version}"; + hash = "sha256-HYfp4CSytRl46BWp5hdQFVf9avUwRcy0lqmqRK3lhdo="; }; postPatch = '' @@ -47,6 +48,7 @@ buildPythonPackage rec { nativeCheckInputs = [ aresponses pytest-asyncio + pytest-cov-stub pytestCheckHook syrupy ];