From 6e9c9d76409dfd96b1deba85dec57a4f826fd200 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 28 Sep 2023 12:46:14 +0200 Subject: [PATCH] python311Packages.hahomematic: 2023.9.4 -> 2023.9.5 Changelog: https://github.com/danielperna84/hahomematic/releases/tag/2023.9.5 --- .../development/python-modules/hahomematic/default.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/hahomematic/default.nix b/pkgs/development/python-modules/hahomematic/default.nix index 3d92bc84a0d2..65af60473397 100644 --- a/pkgs/development/python-modules/hahomematic/default.nix +++ b/pkgs/development/python-modules/hahomematic/default.nix @@ -17,7 +17,7 @@ buildPythonPackage rec { pname = "hahomematic"; - version = "2023.9.4"; + version = "2023.9.5"; format = "pyproject"; disabled = pythonOlder "3.11"; @@ -26,9 +26,15 @@ buildPythonPackage rec { owner = "danielperna84"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-sxUSUj9yJyY89Ma0R0hm5PCt/kiwb6Bj7CyK9Vc14uk="; + hash = "sha256-bs9rAlEgRYjQ2vEPfGxWo4sAn48hiC3IFh9VKVY33KY="; }; + postPatch = '' + substituteInPlace pyproject.toml \ + --replace "setuptools~=68.2" "setuptools" \ + --replace "wheel~=0.41.2" "wheel" + ''; + nativeBuildInputs = [ setuptools wheel