From c5d339d789fdced8f6a98e0f7078c2e21a2eb90d Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 22 Aug 2023 07:57:36 +0200 Subject: [PATCH] python310Packages.hwi: disable on unsupported Python releases --- pkgs/development/python-modules/hwi/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/hwi/default.nix b/pkgs/development/python-modules/hwi/default.nix index 40b694414e9f..b46396c11757 100644 --- a/pkgs/development/python-modules/hwi/default.nix +++ b/pkgs/development/python-modules/hwi/default.nix @@ -18,6 +18,8 @@ buildPythonPackage rec { version = "2.3.1"; format = "setuptools"; + disabled = pythonOlder "3.7"; + src = fetchFromGitHub { owner = "bitcoin-core"; repo = "HWI";