19 buildPythonPackage rec {
20 pname = "ipyparallel";
24 disabled = pythonOlder "3.8";
27 inherit pname version;
28 hash = "sha256-JATVn4ajqqO9J79rV993e/9cE2PBxuYEA3WdFu1C3Hs=";
31 # We do not need the jupyterlab build dependency, because we do not need to
32 # build any JS components; these are present already in the PyPI artifact.
35 substituteInPlace pyproject.toml \
36 --replace '"jupyterlab==4.*",' ""
57 # Requires access to cluster
60 pythonImportsCheck = [
65 description = "Interactive Parallel Computing with IPython";
66 homepage = "https://ipyparallel.readthedocs.io/";
67 changelog = "https://github.com/ipython/ipyparallel/blob/${version}/docs/source/changelog.md";
68 license = licenses.bsd3;
69 maintainers = with maintainers; [ fridh ];