uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
80
pkgs/development/python-modules/nbdime/default.nix
Normal file
80
pkgs/development/python-modules/nbdime/default.nix
Normal file
|
|
@ -0,0 +1,80 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, isPy3k
|
||||
, hypothesis
|
||||
, setuptools-scm
|
||||
, six
|
||||
, attrs
|
||||
, py
|
||||
, setuptools
|
||||
, pytest-cov
|
||||
, pytest-timeout
|
||||
, pytest-tornado
|
||||
, mock
|
||||
, tabulate
|
||||
, nbformat
|
||||
, jsonschema
|
||||
, pytestCheckHook
|
||||
, colorama
|
||||
, pygments
|
||||
, tornado
|
||||
, requests
|
||||
, GitPython
|
||||
, jupyter-server-mathjax
|
||||
, notebook
|
||||
, jinja2
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "nbdime";
|
||||
version = "3.1.1";
|
||||
disabled = !isPy3k;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "67767320e971374f701a175aa59abd3a554723039d39fae908e72d16330d648b";
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
hypothesis
|
||||
pytest-cov
|
||||
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"
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ setuptools-scm ];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
attrs
|
||||
py
|
||||
setuptools
|
||||
six
|
||||
jupyter-server-mathjax
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue