{ lib , buildPythonPackage , fetchPypi , pytest , nose , glibcLocales , entrypoints , bleach , mistune , jinja2 , pygments , traitlets , testpath , jupyter_core , nbformat , ipykernel , pandocfilters , tornado , jupyter_client , defusedxml }: buildPythonPackage rec { pname = "nbconvert"; version = "6.0.7"; src = fetchPypi { inherit pname version; sha256 = "cbbc13a86dfbd4d1b5dee106539de0795b4db156c894c2c5dc382062bbc29002"; }; checkInputs = [ nose pytest glibcLocales ]; propagatedBuildInputs = [ entrypoints bleach mistune jinja2 pygments traitlets testpath jupyter_core nbformat ipykernel pandocfilters tornado jupyter_client defusedxml ]; # disable preprocessor tests for ipython 7 # see issue https://github.com/jupyter/nbconvert/issues/898 checkPhase = '' export LC_ALL=en_US.UTF-8 HOME=$(mktemp -d) py.test -v --ignore="nbconvert/preprocessors/tests/test_execute.py" ''; # Some of the tests use localhost networking. __darwinAllowLocalNetworking = true; meta = { description = "Converting Jupyter Notebooks"; homepage = "https://jupyter.org/"; license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ fridh ]; }; }