mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
c38d70127d
Due to improper sandboxing, I didn't notice the failed tests while upgrading jupytext in #121648. The errors come from jupyter_core so the same fix is used here as there: set $HOME to a writable directory.
60 lines
1.3 KiB
Nix
60 lines
1.3 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
, GitPython
|
|
, jupyter-packaging
|
|
, jupyter_client
|
|
, jupyterlab
|
|
, markdown-it-py
|
|
, mdit-py-plugins
|
|
, nbformat
|
|
, notebook
|
|
, pytestCheckHook
|
|
, pyyaml
|
|
, toml
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jupytext";
|
|
version = "1.11.2";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mwouts";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-S2SKAC2oT4VIVMMDbu/Puo87noAgnQs1hh88JphutA8=";
|
|
};
|
|
|
|
buildInputs = [ jupyter-packaging jupyterlab ];
|
|
propagatedBuildInputs = [
|
|
markdown-it-py
|
|
mdit-py-plugins
|
|
nbformat
|
|
pyyaml
|
|
toml
|
|
];
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
GitPython
|
|
jupyter_client
|
|
notebook
|
|
];
|
|
# Tests that use a Jupyter notebook require $HOME to be writable.
|
|
HOME = "$TMPDIR";
|
|
# Pre-commit tests expect the source directory to be a Git repository.
|
|
pytestFlagsArray = [ "--ignore-glob='tests/test_pre_commit_*.py'" ];
|
|
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 ];
|
|
};
|
|
}
|