3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/nbdime/default.nix

79 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, isPy3k
2019-05-16 23:30:10 +01:00
, hypothesis
, setuptools_scm
, six
, attrs
, py
, setuptools
, pytestcov
, pytest-timeout
, pytest-tornado
, mock
, tabulate
, nbformat
, jsonschema
, pytestCheckHook
2019-05-16 23:30:10 +01:00
, colorama
, pygments
, tornado
, requests
, GitPython
, notebook
, jinja2
}:
buildPythonPackage rec {
pname = "nbdime";
2020-11-29 14:04:34 +00:00
version = "2.1.0";
2019-05-16 23:30:10 +01:00
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
2020-11-29 14:04:34 +00:00
sha256 = "4e3efdcfda31c3074cb565cd8e76e2e5421b1c4560c3a00c56f8679dd15590e5";
2019-05-16 23:30:10 +01:00
};
checkInputs = [
hypothesis
pytestcov
pytest-timeout
pytest-tornado
jsonschema
mock
tabulate
pytestCheckHook
];
disabledTests = [
"test_apply_filter_no_repo"
"test_diff_api_checkpoint"
"test_filter_cmd_invalid_filter"
"test_inline_merge"
"test_interrogate_filter_no_repo"
"test_merge"
2019-05-16 23:30:10 +01:00
];
nativeBuildInputs = [ setuptools_scm ];
propagatedBuildInputs = [
attrs
py
setuptools
six
nbformat
colorama
pygments
tornado
requests
GitPython
notebook
jinja2
];
meta = with lib; {
homepage = "https://github.com/jupyter/nbdime";
2019-05-16 23:30:10 +01:00
description = "Tools for diffing and merging of Jupyter notebooks.";
license = licenses.bsd3;
maintainers = with maintainers; [ tbenst ];
};
}