2017-06-02 16:05:29 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pytest
|
|
|
|
, nose
|
2017-10-23 13:53:43 +01:00
|
|
|
, glibcLocales
|
2017-06-02 16:05:29 +01:00
|
|
|
, entrypoints
|
|
|
|
, bleach
|
|
|
|
, mistune
|
|
|
|
, jinja2
|
|
|
|
, pygments
|
|
|
|
, traitlets
|
|
|
|
, testpath
|
|
|
|
, jupyter_core
|
|
|
|
, nbformat
|
|
|
|
, ipykernel
|
|
|
|
, pandocfilters
|
|
|
|
, tornado
|
|
|
|
, jupyter_client
|
2018-11-04 02:09:19 +00:00
|
|
|
, defusedxml
|
2017-06-02 16:05:29 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "nbconvert";
|
2019-11-11 11:13:38 +00:00
|
|
|
version = "5.6.1";
|
2017-06-02 16:05:29 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-11-11 11:13:38 +00:00
|
|
|
sha256 = "21fb48e700b43e82ba0e3142421a659d7739b65568cc832a13976a77be16b523";
|
2017-06-02 16:05:29 +01:00
|
|
|
};
|
|
|
|
|
2017-10-23 13:53:43 +01:00
|
|
|
checkInputs = [ nose pytest glibcLocales ];
|
2017-06-02 16:05:29 +01:00
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
entrypoints bleach mistune jinja2 pygments traitlets testpath
|
|
|
|
jupyter_core nbformat ipykernel pandocfilters tornado jupyter_client
|
2018-11-04 02:09:19 +00:00
|
|
|
defusedxml
|
2017-06-02 16:05:29 +01:00
|
|
|
];
|
|
|
|
|
2018-11-04 02:09:19 +00:00
|
|
|
# disable preprocessor tests for ipython 7
|
|
|
|
# see issue https://github.com/jupyter/nbconvert/issues/898
|
2017-06-02 16:05:29 +01:00
|
|
|
checkPhase = ''
|
2018-11-04 02:09:19 +00:00
|
|
|
export LC_ALL=en_US.UTF-8
|
|
|
|
HOME=$(mktemp -d) py.test -v --ignore="nbconvert/preprocessors/tests/test_execute.py"
|
2017-06-02 16:05:29 +01:00
|
|
|
'';
|
|
|
|
|
2019-09-14 20:17:42 +01:00
|
|
|
# Some of the tests use localhost networking.
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
|
2017-06-02 16:05:29 +01:00
|
|
|
meta = {
|
|
|
|
description = "Converting Jupyter Notebooks";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://jupyter.org/";
|
2017-06-02 16:05:29 +01:00
|
|
|
license = lib.licenses.bsd3;
|
2019-08-20 18:36:05 +01:00
|
|
|
maintainers = with lib.maintainers; [ fridh ];
|
2017-06-02 16:05:29 +01:00
|
|
|
};
|
|
|
|
}
|