python310Packages.sphinx-thebe: init at 0.1.2

This commit is contained in:
Mario Rodas 2022-07-01 04:20:00 +00:00
parent 7eca257a4a
commit eccb49d429
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, sphinx
}:
buildPythonPackage rec {
pname = "sphinx-thebe";
version = "0.1.2";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "756f1dd6643f5abb491f8a27b22825b04f47e05c5d214bbb2e6b5d42b621b85e";
};
propagatedBuildInputs = [ sphinx ];
pythonImportsCheck = [ "sphinx_thebe" ];
meta = with lib; {
description = "Integrate interactive code blocks into your documentation with Thebe and Binder";
homepage = "https://github.com/executablebooks/sphinx-thebe";
license = licenses.mit;
maintainers = with maintainers; [ marsam ];
};
}

View file

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