python310Packages.sphinx-thebe: init at 0.1.2
This commit is contained in:
parent
7eca257a4a
commit
eccb49d429
29
pkgs/development/python-modules/sphinx-thebe/default.nix
Normal file
29
pkgs/development/python-modules/sphinx-thebe/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -9992,6 +9992,8 @@ in {
|
|||||||
|
|
||||||
sphinx-pytest = callPackage ../development/python-modules/sphinx-pytest { };
|
sphinx-pytest = callPackage ../development/python-modules/sphinx-pytest { };
|
||||||
|
|
||||||
|
sphinx-thebe = callPackage ../development/python-modules/sphinx-thebe { };
|
||||||
|
|
||||||
sphinx-togglebutton = callPackage ../development/python-modules/sphinx-togglebutton { };
|
sphinx-togglebutton = callPackage ../development/python-modules/sphinx-togglebutton { };
|
||||||
|
|
||||||
sphinxcontrib-actdiag = callPackage ../development/python-modules/sphinxcontrib-actdiag { };
|
sphinxcontrib-actdiag = callPackage ../development/python-modules/sphinxcontrib-actdiag { };
|
||||||
|
Loading…
Reference in New Issue
Block a user