python310Packages.sphinx-jupyterbook-latex: init at 0.4.6

This commit is contained in:
Mario Rodas 2022-07-01 04:20:00 +00:00
parent dd9632d222
commit f5c3ceaf91
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, sphinx
, importlib-resources
}:
buildPythonPackage rec {
pname = "sphinx-jupyterbook-latex";
version = "0.4.6";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit version;
pname = "sphinx_jupyterbook_latex";
sha256 = "8ff3775b11ab4798e6e8ec983601d7aea4c3b8e8b5d28ca758578ede3a791334";
};
propagatedBuildInputs = [ sphinx ]
++ lib.optionals (pythonOlder "3.9") [ importlib-resources ];
pythonImportsCheck = [ "sphinx_jupyterbook_latex" ];
meta = with lib; {
description = "Latex specific features for jupyter book";
homepage = "https://github.com/executablebooks/sphinx-jupyterbook-latex";
license = licenses.bsd3;
maintainers = with maintainers; [ marsam ];
};
}

View file

@ -9986,6 +9986,8 @@ in {
sphinx-external-toc = callPackage ../development/python-modules/sphinx-external-toc { };
sphinx-jupyterbook-latex = callPackage ../development/python-modules/sphinx-jupyterbook-latex { };
sphinx-pytest = callPackage ../development/python-modules/sphinx-pytest { };
sphinx-togglebutton = callPackage ../development/python-modules/sphinx-togglebutton { };