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

40 lines
722 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, traitlets
, jupyter_core
, pyzmq
, dateutil
, isPyPy
, py
2018-02-03 09:52:47 +00:00
, tornado
}:
buildPythonPackage rec {
pname = "jupyter_client";
2020-04-21 10:25:19 +01:00
version = "6.1.3";
src = fetchPypi {
inherit pname version;
2020-04-21 10:25:19 +01:00
sha256 = "3a32fa4d0b16d1c626b30c3002a62dfd86d6863ed39eaba3f537fade197bb756";
};
propagatedBuildInputs = [
traitlets
jupyter_core
pyzmq
dateutil
tornado
] ++ lib.optional isPyPy py;
# Circular dependency with ipykernel
doCheck = false;
meta = {
description = "Jupyter protocol implementation and client libraries";
homepage = "https://jupyter.org/";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fridh ];
};
}