python311Packages.notebook 7.0.3 -> 7.0.6 https://repology.org/project/python:notebook/versions attrpath: python311Packages.notebook 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] Going to be running update for following packages: - python3.11-notebook-7.0.3 Press Enter key to continue... Running update for: - python3.11-notebook-7.0.3: UPDATING ... - python3.11-notebook-7.0.3: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/notebook/default.nix b/pkgs/development/python-modules/notebook/default.nix index 88f4c975a858..e26ec900682a 100644 --- a/pkgs/development/python-modules/notebook/default.nix +++ b/pkgs/development/python-modules/notebook/default.nix @@ -16,14 +16,14 @@ buildPythonPackage rec { pname = "notebook"; - version = "7.0.3"; + version = "7.0.6"; disabled = pythonOlder "3.8"; format = "pyproject"; src = fetchPypi { inherit pname version; - hash = "sha256-B/PFBi/Q5uaYZEN6A0erxIXZkaroepLEfWWWmfVxtyk="; + hash = "sha256-7GETsGUpAZ9/KHgZrwbJeiuvepWsIaj24yGSiY6fmlg="; }; postPatch = '' No auto update branch exists Old version 7.0.3" not present in staging derivation file with contents: { stdenv , lib , buildPythonPackage , pythonOlder , fetchPypi , hatch-jupyter-builder , hatchling , jupyter-server , jupyterlab , jupyterlab-server , notebook-shim , tornado , pytest-jupyter , pytestCheckHook }: buildPythonPackage rec { pname = "notebook"; version = "7.0.6"; disabled = pythonOlder "3.8"; format = "pyproject"; src = fetchPypi { inherit pname version; hash = "sha256-7GETsGUpAZ9/KHgZrwbJeiuvepWsIaj24yGSiY6fmlg="; }; postPatch = '' substituteInPlace pyproject.toml \ --replace "timeout = 300" "" ''; nativeBuildInputs = [ hatch-jupyter-builder hatchling jupyterlab ]; propagatedBuildInputs = [ jupyter-server jupyterlab jupyterlab-server notebook-shim tornado ]; nativeCheckInputs = [ pytest-jupyter pytestCheckHook ]; pytestFlagsArray = [ "-W" "ignore::DeprecationWarning" ]; env = { JUPYTER_PLATFORM_DIRS = 1; }; # Some of the tests use localhost networking. __darwinAllowLocalNetworking = true; meta = { changelog = "https://github.com/jupyter/notebook/blob/v${version}/CHANGELOG.md"; description = "Web-based notebook environment for interactive computing"; homepage = "https://github.com/jupyter/notebook"; license = lib.licenses.bsd3; maintainers = lib.teams.jupyter.members; mainProgram = "jupyter-notebook"; }; }