ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / sphinx-inline-tabs / default.nix
blob0dd855fee2ae3cca1aef112f36c973d4b4541953
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , sphinx
5 }:
7 buildPythonPackage rec {
8   pname = "sphinx-inline-tabs";
9   version = "2022.01.02.beta11";
10   format = "flit";
12   src = fetchFromGitHub {
13     owner = "pradyunsg";
14     repo = "sphinx-inline-tabs";
15     rev = version;
16     sha256 = "sha256-k2nOidUk87EZbFsqQ7zr/4eHk+T7wUOYimjbllfneUM=";
17   };
19   propagatedBuildInputs = [
20     sphinx
21   ];
23   # no tests, see https://github.com/pradyunsg/sphinx-inline-tabs/issues/6
24   doCheck = false;
26   pythonImportsCheck = [ "sphinx_inline_tabs" ];
28   meta = with lib; {
29     description = "Add inline tabbed content to your Sphinx documentation";
30     homepage = "https://github.com/pradyunsg/sphinx-inline-tabs";
31     license = licenses.mit;
32     maintainers = with maintainers; [ Luflosi ];
33   };