mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
43 lines
857 B
Nix
43 lines
857 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, nose
|
|
, python-dateutil
|
|
, ipython_genutils
|
|
, decorator
|
|
, pyzmq
|
|
, ipython
|
|
, jupyter_client
|
|
, ipykernel
|
|
, tornado
|
|
, isPy3k
|
|
, futures ? null
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ipyparallel";
|
|
version = "6.3.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0a97b276c62db633e9e97a816282bdd166f9df74e28204f0c8fa54b71944cfdc";
|
|
};
|
|
|
|
buildInputs = [ nose ];
|
|
|
|
propagatedBuildInputs = [ python-dateutil ipython_genutils decorator pyzmq ipython jupyter_client ipykernel tornado
|
|
] ++ lib.optionals (!isPy3k) [ futures ];
|
|
|
|
# Requires access to cluster
|
|
doCheck = false;
|
|
|
|
disabled = !isPy3k;
|
|
|
|
meta = {
|
|
description = "Interactive Parallel Computing with IPython";
|
|
homepage = "http://ipython.org/";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ fridh ];
|
|
};
|
|
}
|