1{ lib 2, buildPythonPackage 3, fetchFromGitHub 4, sphinx 5}: 6 7buildPythonPackage rec { 8 pname = "sphinx-inline-tabs"; 9 version = "2021.08.17.beta10"; 10 format = "flit"; 11 12 src = fetchFromGitHub { 13 owner = "pradyunsg"; 14 repo = "sphinx-inline-tabs"; 15 rev = version; 16 sha256 = "sha256-T3OqK0eXNiBs2zQURCSPLc8aIyf2an32UyDh4qSmxQ4="; 17 }; 18 19 propagatedBuildInputs = [ 20 sphinx 21 ]; 22 23 # no tests, see https://github.com/pradyunsg/sphinx-inline-tabs/issues/6 24 doCheck = false; 25 26 pythonImportsCheck = [ "sphinx_inline_tabs" ]; 27 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 }; 34}