python3Packages.clickclick: drop isPy36 reference

Python 3.6 was dropped a while ago.
This commit is contained in:
Martin Weinelt
2022-11-28 02:39:03 +01:00
parent 8d9ba3f121
commit 5143e438e2
@@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchFromGitHub, isPy36, flake8, click, pyyaml, six, pytestCheckHook, pytest-cov }:
{ lib, buildPythonPackage, fetchFromGitHub, flake8, click, pyyaml, six, pytestCheckHook, pytest-cov }:
buildPythonPackage rec {
pname = "clickclick";
@@ -17,8 +17,6 @@ buildPythonPackage rec {
# test_cli asserts on exact quoting style of output
disabledTests = [
"test_cli"
] ++ lib.optionals isPy36 [
"test_choice_default"
];
meta = with lib; {