From 16ceb917c7cdb582cad343278fecb3558714e9da Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Tue, 14 Jul 2026 17:12:20 +0200 Subject: [PATCH] Revert "python3Packages.click: 8.3.3 -> 8.4.2" This reverts commit 466693502def0acfde2da53cef0b70d8aa3e56bb. Many, many mismatching test strings downstream. --- pkgs/development/python-modules/click/default.nix | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/click/default.nix b/pkgs/development/python-modules/click/default.nix index d79b1b5cede0..13e65aa099c8 100644 --- a/pkgs/development/python-modules/click/default.nix +++ b/pkgs/development/python-modules/click/default.nix @@ -16,24 +16,20 @@ buildPythonPackage rec { pname = "click"; - version = "8.4.2"; + version = "8.3.3"; pyproject = true; src = fetchFromGitHub { owner = "pallets"; repo = "click"; tag = version; - hash = "sha256-66JFGGwPXeCU7Fbqsrsq3giv6qsea1ZKGmZYPu9rcog="; + hash = "sha256-LcnAI4hyiuaJ4qnFnbAR5Cft/yvW5tAIjY6qc6K/Nrw="; }; build-system = [ flit-core ]; nativeCheckInputs = [ pytestCheckHook ]; - pytestFlags = [ - "-Wignore::pytest.PytestRemovedIn10Warning" - ]; - disabledTests = [ # for some reason the tests fail to execute cat, even though they run with less just fine, # even adding coreutils to nativeCheckInputs explicitly does not change anything