mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-06 12:14:40 +00:00
nbdime: init at 1.0.6
This commit is contained in:
parent
39a8f717b8
commit
53feebb379
69
pkgs/development/python-modules/nbdime/default.nix
Normal file
69
pkgs/development/python-modules/nbdime/default.nix
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
{ 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 = "1.0.6";
|
||||||
|
disabled = !isPy3k;
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "00nywb69kp9i0wl5mczgwqc5db8v70ihr9cjbwqppd2jkx4vf34j";
|
||||||
|
};
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -3968,6 +3968,8 @@ in {
|
|||||||
|
|
||||||
nbmerge = callPackage ../development/python-modules/nbmerge { };
|
nbmerge = callPackage ../development/python-modules/nbmerge { };
|
||||||
|
|
||||||
|
nbdime = callPackage ../development/python-modules/nbdime { };
|
||||||
|
|
||||||
nbxmpp = callPackage ../development/python-modules/nbxmpp { };
|
nbxmpp = callPackage ../development/python-modules/nbxmpp { };
|
||||||
|
|
||||||
sleekxmpp = callPackage ../development/python-modules/sleekxmpp { };
|
sleekxmpp = callPackage ../development/python-modules/sleekxmpp { };
|
||||||
|
Loading…
Reference in New Issue
Block a user