86 lines
1.6 KiB
Nix
86 lines
1.6 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, GitPython
|
|
, isort
|
|
, jupyter-client
|
|
, jupyter-packaging
|
|
, jupyterlab
|
|
, markdown-it-py
|
|
, mdit-py-plugins
|
|
, nbformat
|
|
, notebook
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, pyyaml
|
|
, toml
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jupytext";
|
|
version = "1.13.7";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mwouts";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-DWK5ZoPL6Ek3dXHOlZfecQKLNwBqDjMZ77XZ7YLCXKI=";
|
|
};
|
|
|
|
buildInputs = [
|
|
jupyter-packaging
|
|
jupyterlab
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
markdown-it-py
|
|
mdit-py-plugins
|
|
nbformat
|
|
pyyaml
|
|
toml
|
|
];
|
|
|
|
checkInputs = [
|
|
GitPython
|
|
isort
|
|
jupyter-client
|
|
notebook
|
|
pytestCheckHook
|
|
];
|
|
|
|
postPatch = ''
|
|
# https://github.com/mwouts/jupytext/pull/885
|
|
substituteInPlace setup.py \
|
|
--replace "markdown-it-py~=1.0" "markdown-it-py>=1.0.0,<3.0.0"
|
|
'';
|
|
|
|
preCheck = ''
|
|
# Tests that use a Jupyter notebook require $HOME to be writable
|
|
export HOME=$(mktemp -d);
|
|
'';
|
|
|
|
pytestFlagsArray = [
|
|
# Pre-commit tests expect the source directory to be a Git repository
|
|
"--ignore-glob='tests/test_pre_commit_*.py'"
|
|
];
|
|
|
|
disabledTests = [
|
|
"test_apply_black_through_jupytext" # we can't do anything about ill-formatted notebooks
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"jupytext"
|
|
"jupytext.cli"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Jupyter notebooks as Markdown documents, Julia, Python or R scripts";
|
|
homepage = "https://github.com/mwouts/jupytext";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ timokau ];
|
|
};
|
|
}
|