pythonPackages.nbconvert: 5.3.1 -> 5.4.0
This commit is contained in:
parent
7a2de9e9ac
commit
3dd245c5f8
@ -17,15 +17,16 @@
|
|||||||
, pandocfilters
|
, pandocfilters
|
||||||
, tornado
|
, tornado
|
||||||
, jupyter_client
|
, jupyter_client
|
||||||
|
, defusedxml
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "nbconvert";
|
pname = "nbconvert";
|
||||||
version = "5.3.1";
|
version = "5.4.0";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "1f9dkvpx186xjm4xab0qbph588mncp4vqk3fmxrsnqs43mks9c8j";
|
sha256 = "a8a2749f972592aa9250db975304af6b7337f32337e523a2c995cc9e12c07807";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ nose pytest glibcLocales ];
|
checkInputs = [ nose pytest glibcLocales ];
|
||||||
@ -33,11 +34,14 @@ buildPythonPackage rec {
|
|||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
entrypoints bleach mistune jinja2 pygments traitlets testpath
|
entrypoints bleach mistune jinja2 pygments traitlets testpath
|
||||||
jupyter_core nbformat ipykernel pandocfilters tornado jupyter_client
|
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 = ''
|
checkPhase = ''
|
||||||
mkdir tmp
|
export LC_ALL=en_US.UTF-8
|
||||||
LC_ALL=en_US.UTF-8 HOME=`realpath tmp` py.test -v
|
HOME=$(mktemp -d) py.test -v --ignore="nbconvert/preprocessors/tests/test_execute.py"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user