about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorTimo Kaufmann <timokau@zoho.com>2020-05-07 23:58:11 +0200
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2020-05-08 07:22:16 +0200
commit1b8ceee71cd7426c0f6fd5f437e22665ae1d4019 (patch)
treee8a3c2a91a8fc50c23154f5a8586bee7c1f3ee88 /pkgs/development/python-modules
parent863319fcb60ce37a4f4d62ed076dbcb94fd12424 (diff)
downloadnixlib-1b8ceee71cd7426c0f6fd5f437e22665ae1d4019.tar
nixlib-1b8ceee71cd7426c0f6fd5f437e22665ae1d4019.tar.gz
nixlib-1b8ceee71cd7426c0f6fd5f437e22665ae1d4019.tar.bz2
nixlib-1b8ceee71cd7426c0f6fd5f437e22665ae1d4019.tar.lz
nixlib-1b8ceee71cd7426c0f6fd5f437e22665ae1d4019.tar.xz
nixlib-1b8ceee71cd7426c0f6fd5f437e22665ae1d4019.tar.zst
nixlib-1b8ceee71cd7426c0f6fd5f437e22665ae1d4019.zip
python2.pkgs.jupyter_client: pin at 5.x
Version 6.x dropped python2 compatibility.
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/jupyter_client/5.nix39
1 files changed, 39 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/jupyter_client/5.nix b/pkgs/development/python-modules/jupyter_client/5.nix
new file mode 100644
index 000000000000..4855663ebc7d
--- /dev/null
+++ b/pkgs/development/python-modules/jupyter_client/5.nix
@@ -0,0 +1,39 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, traitlets
+, jupyter_core
+, pyzmq
+, dateutil
+, isPyPy
+, py
+, tornado
+}:
+
+buildPythonPackage rec {
+  pname = "jupyter_client";
+  version = "5.3.4";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "60e6faec1031d63df57f1cc671ed673dced0ed420f4377ea33db37b1c188b910";
+  };
+
+  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 ];
+  };
+}