mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
jupyter updates 2024-09-01 (#338730)
This commit is contained in:
commit
1ce5cba162
@ -2,14 +2,13 @@
|
|||||||
buildPythonPackage,
|
buildPythonPackage,
|
||||||
fetchPypi,
|
fetchPypi,
|
||||||
setuptools,
|
setuptools,
|
||||||
wheel,
|
|
||||||
comm,
|
comm,
|
||||||
ipykernel,
|
ipykernel,
|
||||||
ipython,
|
ipython,
|
||||||
jsonschema,
|
jsonschema,
|
||||||
jupyterlab-widgets,
|
jupyterlab-widgets,
|
||||||
lib,
|
lib,
|
||||||
pytest7CheckHook,
|
pytestCheckHook,
|
||||||
pytz,
|
pytz,
|
||||||
traitlets,
|
traitlets,
|
||||||
widgetsnbextension,
|
widgetsnbextension,
|
||||||
@ -17,20 +16,17 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "ipywidgets";
|
pname = "ipywidgets";
|
||||||
version = "8.1.3";
|
version = "8.1.5";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
hash = "sha256-9fnuquCCsYI86erCV1JylS9A10iJOXKVbcCXAKY5LZw=";
|
hash = "sha256-hw5DsaNWVqgMGMlQO78tFoAtsctIfuxvqyfWgzgd3hc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
build-system = [ setuptools ];
|
||||||
setuptools
|
|
||||||
wheel
|
|
||||||
];
|
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
dependencies = [
|
||||||
comm
|
comm
|
||||||
ipython
|
ipython
|
||||||
jupyterlab-widgets
|
jupyterlab-widgets
|
||||||
@ -41,7 +37,7 @@ buildPythonPackage rec {
|
|||||||
nativeCheckInputs = [
|
nativeCheckInputs = [
|
||||||
ipykernel
|
ipykernel
|
||||||
jsonschema
|
jsonschema
|
||||||
pytest7CheckHook
|
pytestCheckHook
|
||||||
pytz
|
pytz
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -2,41 +2,45 @@
|
|||||||
lib,
|
lib,
|
||||||
buildPythonPackage,
|
buildPythonPackage,
|
||||||
fetchPypi,
|
fetchPypi,
|
||||||
notebook,
|
setuptools,
|
||||||
qtconsole,
|
|
||||||
jupyter-console,
|
|
||||||
nbconvert,
|
|
||||||
ipykernel,
|
ipykernel,
|
||||||
ipywidgets,
|
ipywidgets,
|
||||||
|
jupyter-console,
|
||||||
|
jupyterlab,
|
||||||
|
nbconvert,
|
||||||
|
notebook,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
version = "1.0.0";
|
|
||||||
format = "setuptools";
|
|
||||||
pname = "jupyter";
|
pname = "jupyter";
|
||||||
|
version = "1.1.1";
|
||||||
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "d9dc4b3318f310e34c82951ea5d6683f67bed7def4b259fafbfe4f1beb1d8e5f";
|
hash = "sha256-1VRnvOq96knX42JK9+M9WcN//1PtOjUOGslXvtcx3no=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
build-system = [ setuptools ];
|
||||||
notebook
|
|
||||||
qtconsole
|
dependencies = [
|
||||||
jupyter-console
|
|
||||||
nbconvert
|
|
||||||
ipykernel
|
ipykernel
|
||||||
ipywidgets
|
ipywidgets
|
||||||
|
jupyter-console
|
||||||
|
jupyterlab
|
||||||
|
nbconvert
|
||||||
|
notebook
|
||||||
];
|
];
|
||||||
|
|
||||||
# Meta-package, no tests
|
# Meta-package, no tests
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
|
dontUsePythonImportsCheck = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Installs all the Jupyter components in one go";
|
description = "Installs all the Jupyter components in one go";
|
||||||
homepage = "https://jupyter.org/";
|
homepage = "https://jupyter.org/";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
platforms = platforms.all;
|
|
||||||
priority = 100; # This is a metapackage which is unimportant
|
priority = 100; # This is a metapackage which is unimportant
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -7,13 +7,13 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "jupyterlab-widgets";
|
pname = "jupyterlab-widgets";
|
||||||
version = "3.0.11";
|
version = "3.0.13";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
pname = "jupyterlab_widgets";
|
pname = "jupyterlab_widgets";
|
||||||
inherit version;
|
inherit version;
|
||||||
hash = "sha256-3VrGeVk8lprynJvtBUwk8mhCuqUTUhFHNnVrwDXe7ic=";
|
hash = "sha256-opZtOFMowZQraDqM2WuJuN2CyLj4HdqQK7K8BtRvW+0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
# jupyterlab is required to build from source but we use the pre-build package
|
# jupyterlab is required to build from source but we use the pre-build package
|
||||||
|
@ -21,14 +21,14 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "jupyterlab";
|
pname = "jupyterlab";
|
||||||
version = "4.2.4";
|
version = "4.2.5";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.8";
|
disabled = pythonOlder "3.8";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
hash = "sha256-NDqXn7lYL9CMhRGCPjIHAygc0HKgBJvNr9x6/tp/JTc=";
|
hash = "sha256-rn86G4y4i09VAJznn6fAb5nXDNY2Ae5KqRgV0FT0b3U=";
|
||||||
};
|
};
|
||||||
|
|
||||||
build-system = [
|
build-system = [
|
||||||
|
@ -24,14 +24,14 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "marimo";
|
pname = "marimo";
|
||||||
version = "0.8.3";
|
version = "0.8.7";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.8";
|
disabled = pythonOlder "3.8";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
hash = "sha256-t7VYKInsZ0hYW+svD0vnsMyGcMtIeuWaor8nijyDhn8=";
|
hash = "sha256-gxfb5MYPbl8KnvIL+93CyYLOaJ6UflqaikXLAWCS55g=";
|
||||||
};
|
};
|
||||||
|
|
||||||
build-system = [ setuptools ];
|
build-system = [ setuptools ];
|
||||||
|
@ -14,14 +14,14 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "nbsphinx";
|
pname = "nbsphinx";
|
||||||
version = "0.9.4";
|
version = "0.9.5";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
hash = "sha256-BCpggG/CPVGbxb71nZVXBxORP+RC/adZ1T46r2IQR5Q=";
|
hash = "sha256-c2kW57Daso/JBPSprjtTqaUMKfzMYynAUvzHSFq88rc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
build-system = [ setuptools ];
|
build-system = [ setuptools ];
|
||||||
|
@ -7,12 +7,12 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "widgetsnbextension";
|
pname = "widgetsnbextension";
|
||||||
version = "4.0.11";
|
version = "4.0.13";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
hash = "sha256-iyKo8ZEL/RiOWW/n/AXcvYfoEMikugEL2z2oZjc5hHQ=";
|
hash = "sha256-/8tnvJ/r0QI0o2J5X2Q5J/TgwF2TQscntl0jhPj+rLY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ jupyter-packaging ];
|
nativeBuildInputs = [ jupyter-packaging ];
|
||||||
|
Loading…
Reference in New Issue
Block a user