Merge pull request #285959 from natsukium/jupyter/update

jupyter related packages updates 2024-02-03

authored by OTABI Tomoya and committed by GitHub e1297790 5543fcb5

+6 -6
+2 -2
pkgs/development/python-modules/jupyter-server-terminals/default.nix
··· 16 16 17 17 let self = buildPythonPackage rec { 18 18 pname = "jupyter-server-terminals"; 19 - version = "0.5.1"; 19 + version = "0.5.2"; 20 20 pyproject = true; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "jupyter-server"; 24 24 repo = "jupyter_server_terminals"; 25 25 rev = "refs/tags/v${version}"; 26 - hash = "sha256-d++WnroL9nq/G8K5nMl98pXYNpXgdWRfCNoIbVoiD7U="; 26 + hash = "sha256-e4PtrK2DCJAK+LYmGguwU5hmxdqP5Dws1dPoPOv/WrM="; 27 27 }; 28 28 29 29 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/jupyter-server/default.nix
··· 93 93 "test_cull_idle" 94 94 "test_server_extension_list" 95 95 "test_subscribe_websocket" 96 + # test is presumable broken in sandbox 97 + "test_authorized_requests" 96 98 ] ++ lib.optionals stdenv.isDarwin [ 97 99 # attempts to use trashcan, build env doesn't allow this 98 100 "test_delete" 99 - # test is presumable broken in sandbox 100 - "test_authorized_requests" 101 101 # Insufficient access privileges for operation 102 102 "test_regression_is_hidden" 103 103 ] ++ lib.optionals stdenv.isLinux [
+2 -2
pkgs/development/python-modules/jupyterlab/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "jupyterlab"; 22 - version = "4.0.11"; 22 + version = "4.0.12"; 23 23 pyproject = true; 24 24 25 25 disabled = pythonOlder "3.8"; 26 26 27 27 src = fetchPypi { 28 28 inherit pname version; 29 - hash = "sha256-0a7CRxJWa8JaNiKXiCQneOSYykCIAo4vmqFWuLf9yPw="; 29 + hash = "sha256-ll2S76gqU47XDMs5aNmqu6eIhA2oguE9ewYXgM3tw7c="; 30 30 }; 31 31 32 32 nativeBuildInputs = [