python310Packages.notebook 0 -> 1 attrpath: python310Packages.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 [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/lng6x8803y8y071xi7irmc4h7xlp5zrq-packages.json.drv building '/nix/store/lng6x8803y8y071xi7irmc4h7xlp5zrq-packages.json.drv'... Going to be running update for following packages: - python3.10-notebook-6.4.12 Press Enter key to continue... Running update for: - python3.10-notebook-6.4.12: UPDATING ... - python3.10-notebook-6.4.12: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/notebook/default.nix b/pkgs/development/python-modules/notebook/default.nix index fdb599466ff..4e16aa3bdd0 100644 --- a/pkgs/development/python-modules/notebook/default.nix +++ b/pkgs/development/python-modules/notebook/default.nix @@ -27,12 +27,12 @@ buildPythonPackage rec { pname = "notebook"; - version = "6.4.12"; + version = "6.5.2"; disabled = !isPy3k; src = fetchPypi { inherit pname version; - sha256 = "sha256-YmjJ7JBIz/ekVAXJkMKaycpAsLw+wpJj0hjF4B8rToY="; + sha256 = "sha256-wYl+UxfiJfx4tFVJpqtLZo5MmW/QOgTpOP5eevK//9A="; }; LC_ALL = "en_US.utf8"; No auto update branch exists Old version 6.4.12" not present in staging derivation file with contents: { stdenv , lib , buildPythonPackage , fetchPypi , argon2-cffi , nose , nose_warnings_filters , glibcLocales , isPy3k , mock , jinja2 , tornado , ipython_genutils , traitlets , jupyter-core , jupyter-client , nbformat , nbconvert , ipykernel , terminado , requests , send2trash , pexpect , prometheus-client , pytestCheckHook }: buildPythonPackage rec { pname = "notebook"; version = "6.5.2"; disabled = !isPy3k; src = fetchPypi { inherit pname version; sha256 = "sha256-wYl+UxfiJfx4tFVJpqtLZo5MmW/QOgTpOP5eevK//9A="; }; LC_ALL = "en_US.utf8"; checkInputs = [ nose pytestCheckHook glibcLocales ] ++ (if isPy3k then [ nose_warnings_filters ] else [ mock ]); propagatedBuildInputs = [ jinja2 tornado ipython_genutils traitlets jupyter-core send2trash jupyter-client nbformat nbconvert ipykernel terminado requests pexpect prometheus-client argon2-cffi ]; # disable warning_filters preCheck = lib.optionalString (!isPy3k) '' echo "" > setup.cfg ''; postPatch = '' # Remove selenium tests rm -rf notebook/tests/selenium export HOME=$TMPDIR ''; disabledTests = [ # a "system_config" is generated, and fails many tests "config" "load_ordered" # requires jupyter, but will cause circular imports "test_run" "TestInstallServerExtension" "launch_socket" "sock_server" "test_list_formats" # tries to find python MIME type "KernelCullingTest" # has a race condition failing on slower hardware ] ++ lib.optionals stdenv.isDarwin [ "test_delete" "test_checkpoints_follow_file" ]; disabledTestPaths = lib.optionals stdenv.isDarwin [ # requires local networking "notebook/auth/tests/test_login.py" "notebook/bundler/tests/test_bundler_api.py" ]; # Some of the tests use localhost networking. __darwinAllowLocalNetworking = true; meta = { description = "The Jupyter HTML notebook is a web-based notebook environment for interactive computing"; homepage = "https://jupyter.org/"; license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ fridh ]; }; }