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

28 lines
798 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, pythonOlder,
async_generator, traitlets, nbformat, nest-asyncio, jupyter-client,
2020-06-25 10:43:56 +01:00
pytest, xmltodict, nbconvert, ipywidgets
, doCheck ? true
2020-06-25 10:43:56 +01:00
}:
buildPythonPackage rec {
pname = "nbclient";
version = "0.5.9";
2020-06-25 10:43:56 +01:00
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-meRt2vrNC4YSk78kb+2FQKGErfo6p9ZB+JAx7AcHAeA=";
2020-06-25 10:43:56 +01:00
};
inherit doCheck;
2020-06-25 10:43:56 +01:00
checkInputs = [ pytest xmltodict nbconvert ipywidgets ];
propagatedBuildInputs = [ async_generator traitlets nbformat nest-asyncio jupyter-client ];
2020-06-25 10:43:56 +01:00
meta = with lib; {
2020-06-25 10:43:56 +01:00
homepage = "https://github.com/jupyter/nbclient";
description = "A client library for executing notebooks";
license = licenses.bsd3;
maintainers = [ maintainers.erictapen ];
2020-06-25 10:43:56 +01:00
};
}