depot/third_party/nixpkgs/pkgs/development/python-modules/jupytext/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

79 lines
1.5 KiB
Nix

{
lib,
stdenv,
buildPythonPackage,
fetchPypi,
hatch-jupyter-builder,
hatchling,
jupyter-client,
markdown-it-py,
mdit-py-plugins,
nbformat,
notebook,
packaging,
pytest-xdist,
pytestCheckHook,
pythonOlder,
pyyaml,
tomli,
}:
buildPythonPackage rec {
pname = "jupytext";
version = "1.16.2";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-hifdm+y769ecxKTtRyfYnXjmBrS0ZOq3I1ezsCkCOhQ=";
};
build-system = [
hatch-jupyter-builder
hatchling
];
dependencies = [
markdown-it-py
mdit-py-plugins
nbformat
packaging
pyyaml
] ++ lib.optionals (pythonOlder "3.11") [ tomli ];
nativeCheckInputs = [
jupyter-client
notebook
pytest-xdist
pytestCheckHook
];
preCheck = ''
# Tests that use a Jupyter notebook require $HOME to be writable
export HOME=$(mktemp -d);
export PATH=$out/bin:$PATH;
'';
disabledTestPaths = [ "tests/external" ];
disabledTests = lib.optionals stdenv.isDarwin [
# requires access to trash
"test_load_save_rename"
];
pythonImportsCheck = [
"jupytext"
"jupytext.cli"
];
meta = with lib; {
description = "Jupyter notebooks as Markdown documents, Julia, Python or R scripts";
homepage = "https://github.com/mwouts/jupytext";
changelog = "https://github.com/mwouts/jupytext/releases/tag/v${version}";
license = licenses.mit;
maintainers = teams.jupyter.members;
mainProgram = "jupytext";
};
}