python311Packages.jupyter-sphinx: 0.4.0 -> 0.5.3
Changelog: https://github.com/jupyter/jupyter-sphinx/releases/tag/v0.5.3
This commit is contained in:
@@ -1,30 +1,44 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, nbformat
|
||||
, sphinx
|
||||
, hatchling
|
||||
, ipykernel
|
||||
, ipython
|
||||
, ipywidgets
|
||||
, pythonOlder
|
||||
, nbconvert
|
||||
, nbformat
|
||||
, pythonOlder
|
||||
, sphinx
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "jupyter-sphinx";
|
||||
version = "0.4.0";
|
||||
format = "setuptools";
|
||||
version = "0.5.3";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit version;
|
||||
pname = "jupyter_sphinx";
|
||||
hash = "sha256-DBGjjxNDE48sUFHA00xMVF9EgBdMG9QcAlb+gm4LqlU=";
|
||||
hash = "sha256-LiNpmjoc9dsxsQmB2lqjJgbucw9rc6hE0edtgAdWr1Y=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ nbconvert nbformat sphinx ipywidgets ];
|
||||
nativeBuildInputs = [
|
||||
hatchling
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
ipykernel
|
||||
ipython
|
||||
ipywidgets
|
||||
nbconvert
|
||||
nbformat
|
||||
sphinx
|
||||
];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
disabled = pythonOlder "3.5";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Jupyter Sphinx Extensions";
|
||||
homepage = "https://github.com/jupyter/jupyter-sphinx/";
|
||||
|
||||
Reference in New Issue
Block a user