python310Packages.sphinx-togglebutton: init at 0.3.1

This commit is contained in:
Mario Rodas 2022-07-01 04:20:00 +00:00
parent dbdee6040e
commit 4c2ff9c6f5
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchPypi
, wheel
, sphinx
, docutils
}:
buildPythonPackage rec {
pname = "sphinx-togglebutton";
version = "0.3.1";
src = fetchPypi {
inherit pname version;
sha256 = "1f13c25c27a8ff40d6fc924d324746c0adb0dedeef40730c8a8b64ff55c6c92c";
};
propagatedBuildInputs = [ wheel sphinx docutils ];
pythonImportsCheck = [ "sphinx_togglebutton" ];
meta = with lib; {
description = "Toggle page content and collapse admonitions in Sphinx";
homepage = "https://github.com/executablebooks/sphinx-togglebutton";
license = licenses.mit;
maintainers = with maintainers; [ marsam ];
};
}

View file

@ -9982,6 +9982,8 @@ in {
sphinx-pytest = callPackage ../development/python-modules/sphinx-pytest { };
sphinx-togglebutton = callPackage ../development/python-modules/sphinx-togglebutton { };
sphinxcontrib-actdiag = callPackage ../development/python-modules/sphinxcontrib-actdiag { };
sphinxcontrib-apidoc = callPackage ../development/python-modules/sphinxcontrib-apidoc { };