2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, pythonOlder,
|
2021-10-15 11:33:48 +01:00
|
|
|
async_generator, traitlets, nbformat, nest-asyncio, jupyter-client,
|
2020-06-25 10:43:56 +01:00
|
|
|
pytest, xmltodict, nbconvert, ipywidgets
|
2020-11-29 22:51:11 +00:00
|
|
|
, doCheck ? true
|
2020-06-25 10:43:56 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "nbclient";
|
2021-11-20 20:29:42 +00:00
|
|
|
version = "0.5.9";
|
2020-06-25 10:43:56 +01:00
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-11-20 20:29:42 +00:00
|
|
|
sha256 = "sha256-meRt2vrNC4YSk78kb+2FQKGErfo6p9ZB+JAx7AcHAeA=";
|
2020-06-25 10:43:56 +01:00
|
|
|
};
|
|
|
|
|
2020-11-29 22:51:11 +00:00
|
|
|
inherit doCheck;
|
2020-06-25 10:43:56 +01:00
|
|
|
checkInputs = [ pytest xmltodict nbconvert ipywidgets ];
|
2021-10-15 11:33:48 +01:00
|
|
|
propagatedBuildInputs = [ async_generator traitlets nbformat nest-asyncio jupyter-client ];
|
2020-06-25 10:43:56 +01:00
|
|
|
|
2021-01-11 07:54:33 +00: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;
|
2021-11-12 16:49:56 +00:00
|
|
|
maintainers = [ maintainers.erictapen ];
|
2020-06-25 10:43:56 +01:00
|
|
|
};
|
|
|
|
}
|