bac4d95aa2
Lots of URLs were HTTP redirect to HTTPS. Changed those and checked them if there's actual content. Inspired by https://github.com/NixOS/nixpkgs/issues/60004
54 lines
1.1 KiB
Nix
54 lines
1.1 KiB
Nix
{ 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 = "5.4.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "302554a2e219bc0fc84f3edd3e79953f3767b46ab67626fdec16e38ba3f7efe4";
|
|
};
|
|
|
|
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"
|
|
'';
|
|
|
|
meta = {
|
|
description = "Converting Jupyter Notebooks";
|
|
homepage = https://jupyter.org/;
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ fridh globin ];
|
|
};
|
|
}
|