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

jupyter updates 2024-09-01 (#338730)

parents 2419b85a 07e2777d
Loading
Loading
Loading
Loading
+6 −10
Original line number Diff line number Diff line
@@ -2,14 +2,13 @@
  buildPythonPackage,
  fetchPypi,
  setuptools,
  wheel,
  comm,
  ipykernel,
  ipython,
  jsonschema,
  jupyterlab-widgets,
  lib,
  pytest7CheckHook,
  pytestCheckHook,
  pytz,
  traitlets,
  widgetsnbextension,
@@ -17,20 +16,17 @@

buildPythonPackage rec {
  pname = "ipywidgets";
  version = "8.1.3";
  version = "8.1.5";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-9fnuquCCsYI86erCV1JylS9A10iJOXKVbcCXAKY5LZw=";
    hash = "sha256-hw5DsaNWVqgMGMlQO78tFoAtsctIfuxvqyfWgzgd3hc=";
  };

  nativeBuildInputs = [
    setuptools
    wheel
  ];
  build-system = [ setuptools ];

  propagatedBuildInputs = [
  dependencies = [
    comm
    ipython
    jupyterlab-widgets
@@ -41,7 +37,7 @@ buildPythonPackage rec {
  nativeCheckInputs = [
    ipykernel
    jsonschema
    pytest7CheckHook
    pytestCheckHook
    pytz
  ];

+17 −13
Original line number Diff line number Diff line
@@ -2,41 +2,45 @@
  lib,
  buildPythonPackage,
  fetchPypi,
  notebook,
  qtconsole,
  jupyter-console,
  nbconvert,
  setuptools,
  ipykernel,
  ipywidgets,
  jupyter-console,
  jupyterlab,
  nbconvert,
  notebook,
}:

buildPythonPackage rec {
  version = "1.0.0";
  format = "setuptools";
  pname = "jupyter";
  version = "1.1.1";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    sha256 = "d9dc4b3318f310e34c82951ea5d6683f67bed7def4b259fafbfe4f1beb1d8e5f";
    hash = "sha256-1VRnvOq96knX42JK9+M9WcN//1PtOjUOGslXvtcx3no=";
  };

  propagatedBuildInputs = [
    notebook
    qtconsole
    jupyter-console
    nbconvert
  build-system = [ setuptools ];

  dependencies = [
    ipykernel
    ipywidgets
    jupyter-console
    jupyterlab
    nbconvert
    notebook
  ];

  # Meta-package, no tests
  doCheck = false;

  dontUsePythonImportsCheck = true;

  meta = with lib; {
    description = "Installs all the Jupyter components in one go";
    homepage = "https://jupyter.org/";
    license = licenses.bsd3;
    platforms = platforms.all;
    priority = 100; # This is a metapackage which is unimportant
  };
}
+2 −2
Original line number Diff line number Diff line
@@ -7,13 +7,13 @@

buildPythonPackage rec {
  pname = "jupyterlab-widgets";
  version = "3.0.11";
  version = "3.0.13";
  pyproject = true;

  src = fetchPypi {
    pname = "jupyterlab_widgets";
    inherit version;
    hash = "sha256-3VrGeVk8lprynJvtBUwk8mhCuqUTUhFHNnVrwDXe7ic=";
    hash = "sha256-opZtOFMowZQraDqM2WuJuN2CyLj4HdqQK7K8BtRvW+0=";
  };

  # jupyterlab is required to build from source but we use the pre-build package
+2 −2
Original line number Diff line number Diff line
@@ -21,14 +21,14 @@

buildPythonPackage rec {
  pname = "jupyterlab";
  version = "4.2.4";
  version = "4.2.5";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-NDqXn7lYL9CMhRGCPjIHAygc0HKgBJvNr9x6/tp/JTc=";
    hash = "sha256-rn86G4y4i09VAJznn6fAb5nXDNY2Ae5KqRgV0FT0b3U=";
  };

  build-system = [
+2 −2
Original line number Diff line number Diff line
@@ -24,14 +24,14 @@

buildPythonPackage rec {
  pname = "marimo";
  version = "0.8.3";
  version = "0.8.7";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-t7VYKInsZ0hYW+svD0vnsMyGcMtIeuWaor8nijyDhn8=";
    hash = "sha256-gxfb5MYPbl8KnvIL+93CyYLOaJ6UflqaikXLAWCS55g=";
  };

  build-system = [ setuptools ];
Loading