Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / sphinx-argparse / default.nix
blob7ab3ae03c343304b5ba1fa741932fff733d88af9
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 , sphinx
6 }:
8 buildPythonPackage rec {
9   pname = "sphinx-argparse";
10   version = "0.4.0";
11   format = "setuptools";
13   src = fetchPypi {
14     pname = "sphinx_argparse";
15     inherit version;
16     hash = "sha256-4PNBhOtW8S+s53T7yHuICr25AXoJmNHsVZsmfpaX5Ek=";
17   };
19   postPatch = ''
20     # Fix tests for python-3.10 and add 3.10 to CI matrix
21     # Should be fixed in versions > 0.3.1
22     # https://github.com/ashb/sphinx-argparse/pull/3
23     substituteInPlace sphinxarg/parser.py \
24       --replace "if action_group.title == 'optional arguments':" "if action_group.title == 'optional arguments' or action_group.title == 'options':"
25   '';
27   propagatedBuildInputs = [
28     sphinx
29   ];
31   nativeCheckInputs = [
32     pytestCheckHook
33   ];
35   pythonImportsCheck = [ "sphinxarg" ];
37   meta = {
38     description = "A sphinx extension that automatically documents argparse commands and options";
39     homepage = "https://github.com/ashb/sphinx-argparse";
40     license = lib.licenses.mit;
41     maintainers = with lib.maintainers; [ clacke ];
42   };