Skip to content

Commit

Permalink
python3Packages.jupytext: 1.11.0 -> 1.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
AluisioASG committed May 7, 2021
1 parent 11c3036 commit e6d1079
Showing 1 changed file with 28 additions and 15 deletions.
43 changes: 28 additions & 15 deletions pkgs/development/python-modules/jupytext/default.nix
Original file line number Diff line number Diff line change
@@ -1,39 +1,52 @@
{ lib, buildPythonPackage, fetchPypi, isPy27
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, GitPython
, jupyter-packaging
, jupyter_client
, jupyterlab
, markdown-it-py
, mdit-py-plugins
, nbformat
, pytest
, notebook
, pytestCheckHook
, pyyaml
, toml
}:

buildPythonPackage rec {
pname = "jupytext";
version = "1.11.0";
version = "1.11.2";
format = "pyproject";

disabled = isPy27;
disabled = pythonOlder "3.6";

src = fetchPypi {
inherit pname version;
sha256 = "9062d001baaa32430fbb94a2c9394ac906db0a58da94e7aa4e414b73fd7d51bc";
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 = [
pytest
pytestCheckHook
GitPython
jupyter_client
notebook
];

# requires test notebooks which are not shipped with the pypi release
# also, pypi no longer includes tests
doCheck = false;
checkPhase = ''
pytest
'';
# pre-commit tests require 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";
Expand Down

0 comments on commit e6d1079

Please sign in to comment.