nixpkgs/pkgs/development/python-modules/nbclient/default.nix

27 lines
766 B
Nix
Raw Normal View History

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