about summary refs log tree commit diff
path: root/pkgs/development/python-modules/ipyparallel
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-04-18 10:33:59 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2017-04-18 12:03:45 +0200
commit8806414310b774fe8c02c93ea302fed62c3a38c6 (patch)
treeacae94bfcb1370b27215bf49b8a1ddd9de544fe4 /pkgs/development/python-modules/ipyparallel
parent36b8746594e498700355b1f4f9e0ac2dc001efc2 (diff)
downloadnixlib-8806414310b774fe8c02c93ea302fed62c3a38c6.tar
nixlib-8806414310b774fe8c02c93ea302fed62c3a38c6.tar.gz
nixlib-8806414310b774fe8c02c93ea302fed62c3a38c6.tar.bz2
nixlib-8806414310b774fe8c02c93ea302fed62c3a38c6.tar.lz
nixlib-8806414310b774fe8c02c93ea302fed62c3a38c6.tar.xz
nixlib-8806414310b774fe8c02c93ea302fed62c3a38c6.tar.zst
nixlib-8806414310b774fe8c02c93ea302fed62c3a38c6.zip
pythonPackages.ipyparallel: 6.0.0 -> 6.0.2
Diffstat (limited to 'pkgs/development/python-modules/ipyparallel')
-rw-r--r--pkgs/development/python-modules/ipyparallel/default.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/ipyparallel/default.nix b/pkgs/development/python-modules/ipyparallel/default.nix
new file mode 100644
index 000000000000..3e8ea0489207
--- /dev/null
+++ b/pkgs/development/python-modules/ipyparallel/default.nix
@@ -0,0 +1,41 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, nose
+, dateutil
+, ipython_genutils
+, decorator
+, pyzmq
+, ipython
+, jupyter_client
+, ipykernel
+, tornado
+, isPy3k
+, futures
+}:
+
+buildPythonPackage rec {
+  pname = "ipyparallel";
+  version = "6.0.2";
+  name = "${pname}-${version}";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "7eea4780266252fcc987b220a302d589fbb4d6b0569bd131115a20b31891103d";
+  };
+
+  buildInputs = [ nose ];
+
+  propagatedBuildInputs = [ dateutil ipython_genutils decorator pyzmq ipython jupyter_client ipykernel tornado
+  ] ++ lib.optionals (!isPy3k) [ futures ];
+
+  # Requires access to cluster
+  doCheck = false;
+
+  meta = {
+    description = "Interactive Parallel Computing with IPython";
+    homepage = http://ipython.org/;
+    license = lib.licenses.bsd3;
+    maintainers = with lib.maintainers; [ fridh ];
+  };
+}
\ No newline at end of file