depot/third_party/nixpkgs/pkgs/development/python-modules/nbmerge/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

34 lines
714 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, nbformat
, nose
}:
buildPythonPackage rec {
pname = "nbmerge";
version = "unstable-2017-10-23";
src = fetchFromGitHub {
owner = "jbn";
repo = pname;
rev = "fc0ba95e8422340317358ffec4404235defbc06a";
sha256 = "1cn550kjadnxc1sx2xy814248fpzrj3lgvrmsbrwmk03vwaa2hmi";
};
propagatedBuildInputs = [ nbformat ];
checkInputs = [ nose ];
checkPhase = ''
patchShebangs .
nosetests -v
PATH=$PATH:$out/bin ./cli_tests.sh
'';
meta = {
description = "A tool to merge/concatenate Jupyter (IPython) notebooks";
inherit (src.meta) homepage;
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ];
};
}