Commit 46e6ad4a authored by R. RyanTM's avatar R. RyanTM Committed by Weijia Wang
Browse files

python312Packages.ipyparallel: 8.8.0 -> 9.0.0

parent 01fec885
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
@@ -2,9 +2,9 @@
  lib,
  buildPythonPackage,
  decorator,
  entrypoints,
  fetchPypi,
  hatchling,
  importlib-metadata,
  ipykernel,
  ipython,
  jupyter-client,
@@ -19,14 +19,14 @@

buildPythonPackage rec {
  pname = "ipyparallel";
  version = "8.8.0";
  version = "9.0.0";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-JATVn4ajqqO9J79rV993e/9cE2PBxuYEA3WdFu1C3Hs=";
    hash = "sha256-cGAcuvmhadNQ/+IsgtW73+bf5MTfAoNtmZDpxVm1vLY=";
  };

  # We do not need the jupyterlab build dependency, because we do not need to
@@ -41,7 +41,6 @@ buildPythonPackage rec {

  dependencies = [
    decorator
    entrypoints
    ipykernel
    ipython
    jupyter-client
@@ -51,7 +50,7 @@ buildPythonPackage rec {
    tornado
    tqdm
    traitlets
  ];
  ] ++ lib.optional (pythonOlder "3.10") importlib-metadata;

  # Requires access to cluster
  doCheck = false;