summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorSamuel Ainsworth <skainsworth@gmail.com>2022-05-06 01:49:10 +0000
committerSamuel Ainsworth <skainsworth@gmail.com>2022-05-06 01:49:10 +0000
commitdf591a1268ea528f34bfcb54bedff3e2ba0b0ea8 (patch)
tree1038de1ce3df818d51cb61ca9fb27e1e5d9deb10 /pkgs/development/python-modules
parent2c95c2bf2187512a172c8b26d9017eb71cda0197 (diff)
python3Packages.jupyter-sphinx: fix build
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/jupyter-sphinx/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/jupyter-sphinx/default.nix b/pkgs/development/python-modules/jupyter-sphinx/default.nix
index 2da21db1eb14..56cd051ecf4c 100644
--- a/pkgs/development/python-modules/jupyter-sphinx/default.nix
+++ b/pkgs/development/python-modules/jupyter-sphinx/default.nix
@@ -5,6 +5,7 @@
, sphinx
, ipywidgets
, pythonOlder
+, nbconvert
}:
buildPythonPackage rec {
@@ -17,7 +18,7 @@ buildPythonPackage rec {
sha256 = "37fc9408385c45326ac79ca0452fbd7ae2bf0e97842d626d2844d4830e30aaf2";
};
- propagatedBuildInputs = [ nbformat sphinx ipywidgets ];
+ propagatedBuildInputs = [ nbconvert nbformat sphinx ipywidgets ];
doCheck = false;