mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 22:50:49 +00:00
pythonPackages.nbconvert: add test runner, disable tests
This commit is contained in:
parent
f9035f473e
commit
992c5d95f0
|
@ -11761,10 +11761,17 @@ in modules // {
|
|||
sha256 = "e0296e45293dd127d028f678e3b6aba3f1db3283a134178bdb49eea402d4cf1c";
|
||||
};
|
||||
|
||||
buildInputs = with self; [nose];
|
||||
buildInputs = with self; [nose ipykernel ];
|
||||
|
||||
propagatedBuildInputs = with self; [mistune jinja2 pygments traitlets jupyter_core nbformat ipykernel tornado jupyter_client];
|
||||
|
||||
checkPhase = ''
|
||||
nosetests -v
|
||||
'';
|
||||
|
||||
# PermissionError. Likely due to being in a chroot
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Converting Jupyter Notebooks";
|
||||
homepage = http://jupyter.org/;
|
||||
|
|
Loading…
Reference in a new issue