Unverified Commit 1ca1bf9b authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

Merge pull request #302331 from natsukium/jupyter/update

jupyter related packages updates 2024-04-07
parents e817a53a 7935635f
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -14,14 +14,14 @@

buildPythonPackage rec {
  pname = "anywidget";
  version = "0.9.4";
  format = "pyproject";
  version = "0.9.6";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-97nCw1PohHKW2DtY6RARk1/RlMsc1s5wajuhbY3pQxo=";
    hash = "sha256-nhDPAXwcsxwrTBG1kEBj77bDXMb3j/Xckk3FENjCS5E=";
  };

  # We do not need the jupyterlab build dependency, because we do not need to
@@ -32,12 +32,12 @@ buildPythonPackage rec {
      --replace '"jupyterlab==3.*"' ""
  '';

  nativeBuildInputs = [
  build-system = [
    hatch-jupyter-builder
    hatchling
  ];

  propagatedBuildInputs = [
  dependencies = [
    ipywidgets
    psygnal
    typing-extensions
+2 −2
Original line number Diff line number Diff line
@@ -22,14 +22,14 @@

buildPythonPackage rec {
  pname = "ipykernel";
  version = "6.29.3";
  version = "6.29.4";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-4UwlDR+eo5iUkCJcwaVCeBsJWhihlEf88rXq99CsW9I=";
    hash = "sha256-PUQHAGD5R1rCCSt2ASP63xBdLiSTwkhItmkafE9Cr1w=";
  };

  # debugpy is optional, see https://github.com/ipython/ipykernel/pull/767
+2 −2
Original line number Diff line number Diff line
@@ -18,14 +18,14 @@

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

  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-QDwJca5Wwrajn/6PNfMcf9FwzhJ5JGKUWc3X96C058M=";
    hash = "sha256-JATVn4ajqqO9J79rV993e/9cE2PBxuYEA3WdFu1C3Hs=";
  };

  # We do not need the jupyterlab build dependency, because we do not need to
+2 −2
Original line number Diff line number Diff line
@@ -11,13 +11,13 @@

buildPythonPackage rec {
  pname = "ipyvuetify";
  version = "1.9.3";
  version = "1.9.4";
  pyproject = true;

  # GitHub version tries to run npm (Node JS)
  src = fetchPypi {
    inherit pname version;
    hash = "sha256-v2EM/liQ6C8o7x+UtbYM153L7Un9596tXKrNoDboQM0=";
    hash = "sha256-wpwfN68wpj2+lLb4w0erAZYa7OrbVhNfGMv0635oiVs=";
  };

  # drop pynpm which tries to install node_modules
+2 −2
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@

buildPythonPackage rec {
  pname = "jupyterlab-server";
  version = "2.25.4";
  version = "2.26.0";
  pyproject = true;

  disabled = pythonOlder "3.8";
@@ -29,7 +29,7 @@ buildPythonPackage rec {
  src = fetchPypi {
    pname = "jupyterlab_server";
    inherit version;
    hash = "sha256-IJgZjh6C4NuYJED5tRNhddc76izUKmSAqm/VAssjxPk=";
    hash = "sha256-mzupHPKDf38ST8o21j88qArOK+1ImKY91H5lmMGrAG8=";
  };

  postPatch = ''
Loading