From 63a8f6bb317cb398cbacccefb902130998f6e2b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20=22Capypara=22=20K=C3=B6pcke?= Date: Wed, 16 Jul 2025 23:10:44 +0200 Subject: [PATCH] python3Packages.click: 8.1.8 -> 8.2.2 https://github.com/pallets/click/releases/tag/8.2.0 https://github.com/pallets/click/releases/tag/8.2.1 https://github.com/pallets/click/releases/tag/8.2.2 --- .../python-modules/click/default.nix | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/click/default.nix b/pkgs/development/python-modules/click/default.nix index ec105f1ef7d5..28d22e503e90 100644 --- a/pkgs/development/python-modules/click/default.nix +++ b/pkgs/development/python-modules/click/default.nix @@ -3,7 +3,6 @@ buildPythonPackage, pythonOlder, fetchFromGitHub, - importlib-metadata, pytestCheckHook, # large-rebuild downstream dependencies and applications @@ -17,26 +16,28 @@ buildPythonPackage rec { pname = "click"; - version = "8.1.8"; + version = "8.2.2"; pyproject = true; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.10"; src = fetchFromGitHub { owner = "pallets"; repo = "click"; tag = version; - hash = "sha256-pAAqf8jZbDfVZUoltwIFpov/1ys6HSYMyw3WV2qcE/M="; + hash = "sha256-cBvibVZKCppFJiRS8MNc3YT1JxmlXhRci7LHsrd4JGs="; }; build-system = [ flit-core ]; - dependencies = lib.optionals (pythonOlder "3.8") [ importlib-metadata ]; - nativeCheckInputs = [ pytestCheckHook ]; + nativeCheckInputs = [ + pytestCheckHook + ]; disabledTests = [ - # test fails with filename normalization on zfs - "test_file_surrogates" + # 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 + "test_echo_via_pager" ]; passthru.tests = {