python313Packages.help2man: disable broken test

Tom Hunze c425e960 ca8f7212

Changed files
+8
pkgs
development
python-modules
help2man
+8
pkgs/development/python-modules/help2man/default.nix
···
lib,
buildPythonPackage,
fetchFromGitHub,
+
pythonAtLeast,
pythonOlder,
jinja2,
setuptools-scm,
···
propagatedBuildInputs = [ jinja2 ];
nativeCheckInputs = [ pytestCheckHook ];
+
+
disabledTests = lib.optionals (pythonAtLeast "3.13") [
+
# Checks the output of `help2man --help`.
+
# Broken since 3.13 due to changes in `argparse`.
+
# Upstream issue: https://github.com/Freed-Wu/help2man/issues/6
+
"test_help"
+
];
pythonImportsCheck = [ "help2man" ];