mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 11:13:30 +00:00
python3Packages.jupytext: 1.11.2 -> 1.13.2
This commit is contained in:
parent
4fc9618a98
commit
d7ffe95f64
@ -1,23 +1,23 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pythonOlder
|
||||
, GitPython
|
||||
, jupyter-packaging
|
||||
, jupyter-client
|
||||
, jupyter-packaging
|
||||
, jupyterlab
|
||||
, markdown-it-py
|
||||
, mdit-py-plugins
|
||||
, nbformat
|
||||
, notebook
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, pyyaml
|
||||
, toml
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "jupytext";
|
||||
version = "1.11.2";
|
||||
version = "1.13.2";
|
||||
format = "pyproject";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
@ -26,10 +26,14 @@ buildPythonPackage rec {
|
||||
owner = "mwouts";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-S2SKAC2oT4VIVMMDbu/Puo87noAgnQs1hh88JphutA8=";
|
||||
sha256 = "sha256-S2SKAC2oT4VIVMMDbu/Puo87noAgnQs1hh88JphutA8=";
|
||||
};
|
||||
|
||||
buildInputs = [ jupyter-packaging jupyterlab ];
|
||||
buildInputs = [
|
||||
jupyter-packaging
|
||||
jupyterlab
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
markdown-it-py
|
||||
mdit-py-plugins
|
||||
@ -39,16 +43,32 @@ buildPythonPackage rec {
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
GitPython
|
||||
jupyter-client
|
||||
notebook
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
# https://github.com/mwouts/jupytext/pull/885
|
||||
substituteInPlace setup.py \
|
||||
--replace "markdown-it-py[plugins]>=1.0.0b3,<2.0.0" "markdown-it-py[plugins]>=1.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'"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"jupytext"
|
||||
"jupytext.cli"
|
||||
];
|
||||
# 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";
|
||||
|
Loading…
Reference in New Issue
Block a user