pythonPackages.jupyter_client: 5.2.4 -> 5.3.1

This commit is contained in:
Jonathan Ringer 2019-08-02 17:31:44 -07:00 committed by Frederik Rietdijk
parent 460c6a7a59
commit 40a93cd8b2

View file

@ -7,10 +7,6 @@
, dateutil
, isPyPy
, py
, ipykernel
, ipython
, mock
, pytest
, tornado
}:
@ -20,15 +16,16 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
sha256 = "98e8af5edff5d24e4d31e73bc21043130ae9d955a91aa93fc0bc3b1d0f7b5880";
sha256 = "102qgc7isfxwq0zsj6m9apcyj2hk8c8c4fz7656lxlpmvxgazs4q";
};
checkInputs = [ ipykernel ipython mock pytest ];
propagatedBuildInputs = [traitlets jupyter_core pyzmq dateutil tornado ] ++ lib.optional isPyPy py;
checkPhase = ''
py.test
'';
propagatedBuildInputs = [
traitlets
jupyter_core
pyzmq
dateutil
tornado
] ++ lib.optional isPyPy py;
# Circular dependency with ipykernel
doCheck = false;
@ -39,4 +36,4 @@ buildPythonPackage rec {
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fridh ];
};
}
}