python311Packages.jupyter-server 0 -> 1 attrpath: python311Packages.jupyter-server Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/57kgyz6r4rdmwb761avw8i39wzmzmk2v-packages.json.drv building '/nix/store/57kgyz6r4rdmwb761avw8i39wzmzmk2v-packages.json.drv'... Going to be running update for following packages: - python3.11-jupyter-server-2.12.5 Press Enter key to continue... Running update for: - python3.11-jupyter-server-2.12.5: UPDATING ... - python3.11-jupyter-server-2.12.5: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/jupyter-server/default.nix b/pkgs/development/python-modules/jupyter-server/default.nix index c934ee43b4ec..6b0160202d87 100644 --- a/pkgs/development/python-modules/jupyter-server/default.nix +++ b/pkgs/development/python-modules/jupyter-server/default.nix @@ -34,14 +34,14 @@ buildPythonPackage rec { pname = "jupyter-server"; - version = "2.12.5"; + version = "2.13.0"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchPypi { pname = "jupyter_server"; inherit version; - hash = "sha256-DttibJS6oigJvhMj+XcM8cAKlSsXCXWS5A0D5qOVFok="; + hash = "sha256-yAv7BJ6iAFPD2WQcKt1ISLOAc7958XKc6h+u0y/Bx44="; }; nativeBuildInputs = [ No auto update branch exists Old version 2.12.5" not present in staging derivation file with contents: { lib , stdenv , buildPythonPackage , fetchPypi , pythonOlder , hatch-jupyter-builder , hatchling , pytestCheckHook , pytest-console-scripts , pytest-jupyter , pytest-timeout , argon2-cffi , jinja2 , tornado , pyzmq , ipykernel , traitlets , jupyter-core , jupyter-client , jupyter-events , jupyter-server-terminals , nbformat , nbconvert , packaging , send2trash , terminado , prometheus-client , anyio , websocket-client , overrides , requests , flaky }: buildPythonPackage rec { pname = "jupyter-server"; version = "2.13.0"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchPypi { pname = "jupyter_server"; inherit version; hash = "sha256-yAv7BJ6iAFPD2WQcKt1ISLOAc7958XKc6h+u0y/Bx44="; }; nativeBuildInputs = [ hatch-jupyter-builder hatchling ]; propagatedBuildInputs = [ argon2-cffi jinja2 tornado pyzmq traitlets jupyter-core jupyter-client jupyter-events jupyter-server-terminals nbformat nbconvert packaging send2trash terminado prometheus-client anyio websocket-client overrides ]; nativeCheckInputs = [ ipykernel pytestCheckHook pytest-console-scripts pytest-jupyter pytest-timeout requests flaky ]; pytestFlagsArray = [ "-W" "ignore::DeprecationWarning" ]; preCheck = '' export HOME=$(mktemp -d) export PATH=$out/bin:$PATH ''; disabledTests = [ "test_cull_idle" "test_server_extension_list" "test_subscribe_websocket" # test is presumable broken in sandbox "test_authorized_requests" ] ++ lib.optionals stdenv.isDarwin [ # attempts to use trashcan, build env doesn't allow this "test_delete" # Insufficient access privileges for operation "test_regression_is_hidden" ] ++ lib.optionals stdenv.isLinux [ # Failed: DID NOT RAISE "test_copy_big_dir" ]; disabledTestPaths = [ "tests/services/kernels/test_api.py" "tests/services/sessions/test_api.py" # nbconvert failed: `relax_add_props` kwargs of validate has been # deprecated for security reasons, and will be removed soon. "tests/nbconvert/test_handlers.py" ]; __darwinAllowLocalNetworking = true; meta = with lib; { changelog = "https://github.com/jupyter-server/jupyter_server/blob/v${version}/CHANGELOG.md"; description = "The backend—i.e. core services, APIs, and REST endpoints—to Jupyter web applications"; mainProgram = "jupyter-server"; homepage = "https://github.com/jupyter-server/jupyter_server"; license = licenses.bsdOriginal; maintainers = lib.teams.jupyter.members; }; }