mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00:00
python3Packages.jupytext: 1.11.0 -> 1.11.2
This commit is contained in:
parent
11c3036bff
commit
e6d1079b9b
@ -1,39 +1,52 @@
|
|||||||
{ lib, buildPythonPackage, fetchPypi, isPy27
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pythonOlder
|
||||||
|
, GitPython
|
||||||
|
, jupyter-packaging
|
||||||
|
, jupyter_client
|
||||||
|
, jupyterlab
|
||||||
, markdown-it-py
|
, markdown-it-py
|
||||||
|
, mdit-py-plugins
|
||||||
, nbformat
|
, nbformat
|
||||||
, pytest
|
, notebook
|
||||||
|
, pytestCheckHook
|
||||||
, pyyaml
|
, pyyaml
|
||||||
, toml
|
, toml
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "jupytext";
|
pname = "jupytext";
|
||||||
version = "1.11.0";
|
version = "1.11.2";
|
||||||
|
format = "pyproject";
|
||||||
|
|
||||||
disabled = isPy27;
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchFromGitHub {
|
||||||
inherit pname version;
|
owner = "mwouts";
|
||||||
sha256 = "9062d001baaa32430fbb94a2c9394ac906db0a58da94e7aa4e414b73fd7d51bc";
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-S2SKAC2oT4VIVMMDbu/Puo87noAgnQs1hh88JphutA8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
buildInputs = [ jupyter-packaging jupyterlab ];
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
markdown-it-py
|
markdown-it-py
|
||||||
|
mdit-py-plugins
|
||||||
nbformat
|
nbformat
|
||||||
pyyaml
|
pyyaml
|
||||||
toml
|
toml
|
||||||
];
|
];
|
||||||
|
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
pytest
|
pytestCheckHook
|
||||||
|
GitPython
|
||||||
|
jupyter_client
|
||||||
|
notebook
|
||||||
];
|
];
|
||||||
|
# pre-commit tests require a Git repository.
|
||||||
# requires test notebooks which are not shipped with the pypi release
|
pytestFlagsArray = [ "--ignore-glob='tests/test_pre_commit_*.py'" ];
|
||||||
# also, pypi no longer includes tests
|
pythonImportsCheck = [ "jupytext" "jupytext.cli" ];
|
||||||
doCheck = false;
|
|
||||||
checkPhase = ''
|
|
||||||
pytest
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Jupyter notebooks as Markdown documents, Julia, Python or R scripts";
|
description = "Jupyter notebooks as Markdown documents, Julia, Python or R scripts";
|
||||||
|
Loading…
Reference in New Issue
Block a user