python310Packages.nbconvert 7.7.3 -> 7.9.2 https://repology.org/project/python:nbconvert/versions attrpath: python310Packages.nbconvert Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [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/jc0l5569diw4faw9ihyn8j9kkk6q1hz1-packages.json.drv building '/nix/store/jc0l5569diw4faw9ihyn8j9kkk6q1hz1-packages.json.drv'... Going to be running update for following packages: - python3.10-nbconvert-7.7.3 Press Enter key to continue... Running update for: - python3.10-nbconvert-7.7.3: UPDATING ... - python3.10-nbconvert-7.7.3: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/nbconvert/default.nix b/pkgs/development/python-modules/nbconvert/default.nix index e7fb3dfba472..dd73c356e7a8 100644 --- a/pkgs/development/python-modules/nbconvert/default.nix +++ b/pkgs/development/python-modules/nbconvert/default.nix @@ -33,7 +33,7 @@ let }; in buildPythonPackage rec { pname = "nbconvert"; - version = "7.7.3"; + version = "7.9.2"; disabled = pythonOlder "3.8"; @@ -41,7 +41,7 @@ in buildPythonPackage rec { src = fetchPypi { inherit pname version; - hash = "sha256-SlmWv1880WqgQxiXuhqkxkhCwgefQ0s9xrjEslLvM1U="; + hash = "sha256-5WzHWIrMT5Piu1o07GkCjklBeXsr+vZGLxikHRzCWMk="; }; # Add $out/share/jupyter to the list of paths that are used to search for No auto update branch exists Old version 7.7.3" not present in staging derivation file with contents: { lib , fetchurl , buildPythonPackage , pythonOlder , fetchPypi , hatchling , beautifulsoup4 , bleach , defusedxml , jinja2 , jupyter-core , jupyterlab-pygments , markupsafe , mistune , nbclient , packaging , pandocfilters , pygments , tinycss2 , traitlets , importlib-metadata , flaky , ipywidgets , pyppeteer , pytestCheckHook }: let # see https://github.com/jupyter/nbconvert/issues/1896 style-css = fetchurl { url = "https://cdn.jupyter.org/notebook/5.4.0/style/style.min.css"; hash = "sha256-WGWmCfRDewRkvBIc1We2GQdOVAoFFaO4LyIvdk61HgE="; }; in buildPythonPackage rec { pname = "nbconvert"; version = "7.8.0"; disabled = pythonOlder "3.8"; format = "pyproject"; src = fetchPypi { inherit pname version; hash = "sha256-9bwVoSR+FN1Bzu8MCjvHACDgFldusFeNpi8cW0+VBHk="; }; # Add $out/share/jupyter to the list of paths that are used to search for # various exporter templates patches = [ ./templates.patch ]; postPatch = '' substituteAllInPlace ./nbconvert/exporters/templateexporter.py mkdir -p share/templates/classic/static cp ${style-css} share/templates/classic/static/style.css ''; nativeBuildInputs = [ hatchling ]; propagatedBuildInputs = [ beautifulsoup4 bleach defusedxml jinja2 jupyter-core jupyterlab-pygments markupsafe mistune nbclient packaging pandocfilters pygments tinycss2 traitlets ] ++ lib.optionals (pythonOlder "3.10") [ importlib-metadata ]; preCheck = '' export HOME=$(mktemp -d) ''; nativeCheckInputs = [ flaky ipywidgets pyppeteer pytestCheckHook ]; disabledTests = [ # Attempts network access (Failed to establish a new connection: [Errno -3] Temporary failure in name resolution) "test_export" "test_webpdf_with_chromium" # ModuleNotFoundError: No module named 'nbconvert.tests' "test_convert_full_qualified_name" "test_post_processor" ]; # Some of the tests use localhost networking. __darwinAllowLocalNetworking = true; meta = { description = "Converting Jupyter Notebooks"; homepage = "https://jupyter.org/"; license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ fridh ]; }; }