6 , jupyter-highlight-selected-word
7 , jupyter-nbextensions-configurator
14 buildPythonPackage rec {
15 pname = "jupyter-contrib-nbextensions";
18 src = fetchFromGitHub {
19 owner = "ipython-contrib";
20 repo = "jupyter_contrib_nbextensions";
21 rev = "refs/tags/${version}";
22 hash = "sha256-1o8tBfRw6jNcKfNE7xXrQaEhx+KOv7mLOruvuMDtJ1Q=";
25 propagatedBuildInputs = [
28 jupyter-highlight-selected-word
29 jupyter-nbextensions-configurator
39 # Thoses tests fail upstream because of nbconvert being too recent
40 # https://github.com/ipython-contrib/jupyter_contrib_nbextensions/issues/1606
41 "tests/test_exporters.py"
43 # Requires to run jupyter which is not feasible here
44 "tests/test_application.py"
47 pythonImportsCheck = [ "jupyter_contrib_nbextensions" ];
50 description = "A collection of various notebook extensions for Jupyter";
51 homepage = "https://github.com/ipython-contrib/jupyter_contrib_nbextensions";
52 license = licenses.bsd3;
53 maintainers = with maintainers; [ GaetanLepage ];
54 # https://github.com/ipython-contrib/jupyter_contrib_nbextensions/issues/1647
55 broken = versionAtLeast notebook.version "7";