2017-04-18 09:33:59 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, decorator
|
2022-08-21 16:13:29 +01:00
|
|
|
, entrypoints
|
|
|
|
, fetchPypi
|
|
|
|
, hatchling
|
|
|
|
, ipykernel
|
2017-04-18 09:33:59 +01:00
|
|
|
, ipython
|
2022-08-21 16:13:29 +01:00
|
|
|
, ipython_genutils
|
2021-10-15 11:33:48 +01:00
|
|
|
, jupyter-client
|
2022-02-28 03:24:54 +00:00
|
|
|
, packaging
|
|
|
|
, psutil
|
2022-08-21 16:13:29 +01:00
|
|
|
, python-dateutil
|
|
|
|
, pythonOlder
|
|
|
|
, pyzmq
|
2017-04-18 09:33:59 +01:00
|
|
|
, tornado
|
2022-02-28 03:24:54 +00:00
|
|
|
, tqdm
|
2022-08-21 16:13:29 +01:00
|
|
|
, traitlets
|
2017-04-18 09:33:59 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "ipyparallel";
|
2022-07-16 11:59:13 +01:00
|
|
|
version = "8.4.1";
|
2022-08-21 16:13:29 +01:00
|
|
|
format = "pyproject";
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.7";
|
2017-04-18 09:33:59 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-08-21 16:13:29 +01:00
|
|
|
hash = "sha256-Zwu+BXVTgXQuHqARd9xCj/jz6Urx8NVkLJ0Z83yoKJs=";
|
2017-04-18 09:33:59 +01:00
|
|
|
};
|
|
|
|
|
2022-08-21 16:13:29 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
hatchling
|
|
|
|
];
|
2017-04-18 09:33:59 +01:00
|
|
|
|
2022-08-21 16:13:29 +01:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
decorator
|
|
|
|
entrypoints
|
|
|
|
ipykernel
|
|
|
|
ipython
|
|
|
|
ipython_genutils
|
|
|
|
jupyter-client
|
|
|
|
packaging
|
|
|
|
psutil
|
|
|
|
python-dateutil
|
|
|
|
pyzmq
|
|
|
|
tornado
|
|
|
|
tqdm
|
|
|
|
traitlets
|
|
|
|
];
|
2017-04-18 09:33:59 +01:00
|
|
|
|
|
|
|
# Requires access to cluster
|
|
|
|
doCheck = false;
|
|
|
|
|
2022-08-21 16:13:29 +01:00
|
|
|
pythonImportsCheck = [
|
|
|
|
"ipyparallel"
|
|
|
|
];
|
2020-05-10 08:31:52 +01:00
|
|
|
|
2022-08-21 16:13:29 +01:00
|
|
|
meta = with lib;{
|
2017-04-18 09:33:59 +01:00
|
|
|
description = "Interactive Parallel Computing with IPython";
|
2022-08-21 16:13:29 +01:00
|
|
|
homepage = "https://ipyparallel.readthedocs.io/";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ fridh ];
|
2017-04-18 09:33:59 +01:00
|
|
|
};
|
2020-04-01 02:11:51 +01:00
|
|
|
}
|