nixpkgs/pkgs/development/python-modules/nbconvert/default.nix

86 lines
1.9 KiB
Nix
Raw Normal View History

2017-06-02 15:05:29 +00:00
{ lib
, buildPythonPackage
, fetchPypi
2020-11-29 23:01:04 +00:00
, pytestCheckHook
, glibcLocales
2017-06-02 15:05:29 +00:00
, entrypoints
, bleach
, mistune
2020-11-29 23:01:04 +00:00
, nbclient
2017-06-02 15:05:29 +00:00
, jinja2
, pygments
, traitlets
, testpath
, jupyter_core
2020-11-29 23:01:04 +00:00
, jupyterlab-pygments
2017-06-02 15:05:29 +00:00
, nbformat
, ipykernel
, pandocfilters
, tornado
, jupyter_client
, defusedxml
2017-06-02 15:05:29 +00:00
}:
buildPythonPackage rec {
pname = "nbconvert";
version = "6.0.7";
2017-06-02 15:05:29 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "cbbc13a86dfbd4d1b5dee106539de0795b4db156c894c2c5dc382062bbc29002";
2017-06-02 15:05:29 +00:00
};
# Add $out/share/jupyter to the list of paths that are used to search for
# various exporter templates
patches = [
./templates.patch
];
postPatch = ''
substituteAllInPlace ./nbconvert/exporters/templateexporter.py
'';
2020-11-29 23:01:04 +00:00
checkInputs = [ pytestCheckHook glibcLocales ];
2017-06-02 15:05:29 +00:00
propagatedBuildInputs = [
entrypoints bleach mistune jinja2 pygments traitlets testpath
jupyter_core nbformat ipykernel pandocfilters tornado jupyter_client
defusedxml
2020-11-29 23:01:04 +00:00
(nbclient.override { doCheck = false; }) # avoid infinite recursion
jupyterlab-pygments
2017-06-02 15:05:29 +00:00
];
# disable preprocessor tests for ipython 7
# see issue https://github.com/jupyter/nbconvert/issues/898
2020-11-29 23:01:04 +00:00
preCheck = ''
export LC_ALL=en_US.UTF-8
2020-11-29 23:01:04 +00:00
HOME=$(mktemp -d)
2017-06-02 15:05:29 +00:00
'';
2020-11-29 23:01:04 +00:00
pytestFlagsArray = [
"--ignore=nbconvert/preprocessors/tests/test_execute.py"
# can't resolve template paths within sandbox
"--ignore=nbconvert/tests/base.py"
"--ignore=nbconvert/tests/test_nbconvertapp.py"
];
disabledTests = [
"test_export"
"test_webpdf_without_chromium"
#"test_cell_tag_output"
#"test_convert_from_stdin"
#"test_convert_full_qualified_name"
];
2019-09-14 19:17:42 +00:00
# Some of the tests use localhost networking.
__darwinAllowLocalNetworking = true;
2017-06-02 15:05:29 +00:00
meta = {
description = "Converting Jupyter Notebooks";
homepage = "https://jupyter.org/";
2017-06-02 15:05:29 +00:00
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fridh ];
2017-06-02 15:05:29 +00:00
};
}