python3Packages.nbclient: enable conditional checking

This commit is contained in:
Jonathan Ringer 2020-11-29 14:51:11 -08:00 committed by Frederik Rietdijk
parent 4670a8f304
commit 4f4d369be7

View file

@ -1,6 +1,7 @@
{ stdenv, buildPythonPackage, fetchPypi, pythonOlder,
async_generator, traitlets, nbformat, nest-asyncio, jupyter_client,
pytest, xmltodict, nbconvert, ipywidgets
, doCheck ? true
}:
buildPythonPackage rec {
@ -13,6 +14,7 @@ buildPythonPackage rec {
sha256 = "01e2d726d16eaf2cde6db74a87e2451453547e8832d142f73f72fddcd4fe0250";
};
inherit doCheck;
checkInputs = [ pytest xmltodict nbconvert ipywidgets ];
propagatedBuildInputs = [ async_generator traitlets nbformat nest-asyncio jupyter_client ];