mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
70 lines
1.1 KiB
Nix
70 lines
1.1 KiB
Nix
{ lib, buildPythonPackage, fetchPypi, callPackage, isPy3k
|
|
, hypothesis
|
|
, setuptools_scm
|
|
, six
|
|
, attrs
|
|
, py
|
|
, setuptools
|
|
, pytestcov
|
|
, pytest-timeout
|
|
, pytest-tornado
|
|
, mock
|
|
, tabulate
|
|
, nbformat
|
|
, jsonschema
|
|
, pytest
|
|
, colorama
|
|
, pygments
|
|
, tornado
|
|
, requests
|
|
, GitPython
|
|
, notebook
|
|
, jinja2
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "nbdime";
|
|
version = "2.0.0";
|
|
disabled = !isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0pbi22mc5al29pvsw7bhai2d58i8n77gv09r7avr1wap6ni7jvw9";
|
|
};
|
|
|
|
checkInputs = [
|
|
hypothesis
|
|
pytestcov
|
|
pytest-timeout
|
|
pytest-tornado
|
|
jsonschema
|
|
mock
|
|
tabulate
|
|
pytest
|
|
];
|
|
|
|
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";
|
|
description = "Tools for diffing and merging of Jupyter notebooks.";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ tbenst ];
|
|
};
|
|
}
|