We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca8f721 commit c425e96Copy full SHA for c425e96
pkgs/development/python-modules/help2man/default.nix
@@ -2,6 +2,7 @@
2
lib,
3
buildPythonPackage,
4
fetchFromGitHub,
5
+ pythonAtLeast,
6
pythonOlder,
7
jinja2,
8
setuptools-scm,
@@ -35,6 +36,13 @@ buildPythonPackage rec {
35
36
37
nativeCheckInputs = [ pytestCheckHook ];
38
39
+ disabledTests = lib.optionals (pythonAtLeast "3.13") [
40
+ # Checks the output of `help2man --help`.
41
+ # Broken since 3.13 due to changes in `argparse`.
42
+ # Upstream issue: https://github.com/Freed-Wu/help2man/issues/6
43
+ "test_help"
44
+ ];
45
+
46
pythonImportsCheck = [ "help2man" ];
47
48
meta = with lib; {
0 commit comments