Marco "Capypara" Köpcke
2025-08-09 18:57:44 +02:00
committed by Martin Weinelt
parent 29a631d120
commit 63a8f6bb31
@@ -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 = {