python310Packages.sphinx-argparse: Fix tests (#187400)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Jonas Heinrich
2022-08-21 01:45:21 +02:00
committed by GitHub
co-authored by Sandro
parent 9e6fd6c8aa
commit 4d927a17fb
@@ -1,7 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, pytestCheckHook
, sphinx
}:
@@ -14,19 +14,27 @@ buildPythonPackage rec {
sha256 = "82151cbd43ccec94a1530155f4ad34f251aaca6a0ffd5516d7fadf952d32dc1e";
};
checkInputs = [
pytest
];
checkPhase = "py.test";
postPatch = ''
# Fix tests for python-3.10 and add 3.10 to CI matrix
# Should be fixed in versions > 0.3.1
# https://github.com/ashb/sphinx-argparse/pull/3
substituteInPlace sphinxarg/parser.py \
--replace "if action_group.title == 'optional arguments':" "if action_group.title == 'optional arguments' or action_group.title == 'options':"
'';
propagatedBuildInputs = [
sphinx
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "sphinxarg" ];
meta = {
description = "A sphinx extension that automatically documents argparse commands and options";
homepage = "https://github.com/ribozz/sphinx-argparse";
homepage = "https://github.com/ashb/sphinx-argparse";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ clacke ];
};