python3.pkgs.jupyter-sphinx: init at 0.2.4
This commit is contained in:
parent
7048a817b2
commit
5f0bd4d70f
32
pkgs/development/python-modules/jupyter-sphinx/default.nix
Normal file
32
pkgs/development/python-modules/jupyter-sphinx/default.nix
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, nbformat
|
||||||
|
, sphinx
|
||||||
|
, ipywidgets
|
||||||
|
, pythonOlder
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "jupyter-sphinx";
|
||||||
|
version = "0.2.4";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit version;
|
||||||
|
pname = "jupyter_sphinx";
|
||||||
|
sha256 = "b5ba1efdd1488b385de0068036a665932ed93998e40ce3a342c60f0926781fd9";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ nbformat sphinx ipywidgets ];
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.5";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Jupyter Sphinx Extensions";
|
||||||
|
homepage = "https://github.com/jupyter/jupyter-sphinx/";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -3121,6 +3121,8 @@ in {
|
|||||||
|
|
||||||
jupyterlab = callPackage ../development/python-modules/jupyterlab {};
|
jupyterlab = callPackage ../development/python-modules/jupyterlab {};
|
||||||
|
|
||||||
|
jupyter-sphinx = callPackage ../development/python-modules/jupyter-sphinx { };
|
||||||
|
|
||||||
jupytext = callPackage ../development/python-modules/jupytext { };
|
jupytext = callPackage ../development/python-modules/jupytext { };
|
||||||
|
|
||||||
PyLTI = callPackage ../development/python-modules/pylti { };
|
PyLTI = callPackage ../development/python-modules/pylti { };
|
||||||
|
Loading…
Reference in New Issue
Block a user