python311Packages.sphinx 0 -> 1 attrpath: python311Packages.sphinx 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-sphinx-7.2.6 Press Enter key to continue... Running update for: - python3.11-sphinx-7.2.6: UPDATING ... - python3.11-sphinx-7.2.6: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/sphinx/default.nix b/pkgs/development/python-modules/sphinx/default.nix index 43b7ebcd99ee..55134654a1bd 100644 --- a/pkgs/development/python-modules/sphinx/default.nix +++ b/pkgs/development/python-modules/sphinx/default.nix @@ -36,7 +36,7 @@ buildPythonPackage rec { pname = "sphinx"; - version = "7.2.6"; + version = "7.3.7"; format = "pyproject"; disabled = pythonOlder "3.9"; @@ -51,7 +51,7 @@ buildPythonPackage rec { mv tests/roots/test-images/{testimäge,testimæge}.png sed -i 's/testimäge/testimæge/g' tests/{test_build*.py,roots/test-images/index.rst} ''; - hash = "sha256-IjpRGeGpGfzrEvwIKtuu2l1S74w8W+AbqDOGnWwtRck="; + hash = "sha256-0u+T80Zu/BQ2AfKaT+JoSpjs2VZSdFS6Jkl3aq9bluY="; }; nativeBuildInputs = [ No auto update branch exists Old version 7.2.6" not present in staging derivation file with contents: { lib , buildPythonPackage , pythonOlder , fetchFromGitHub , isPyPy # nativeBuildInputs , flit-core # propagatedBuildInputs , babel , alabaster , docutils , imagesize , importlib-metadata , jinja2 , packaging , pygments , requests , snowballstemmer , sphinxcontrib-applehelp , sphinxcontrib-devhelp , sphinxcontrib-htmlhelp , sphinxcontrib-jsmath , sphinxcontrib-qthelp , sphinxcontrib-serializinghtml , sphinxcontrib-websupport # check phase , defusedxml , filelock , html5lib , pytestCheckHook , pytest-xdist }: buildPythonPackage rec { pname = "sphinx"; version = "7.3.7"; format = "pyproject"; disabled = pythonOlder "3.9"; src = fetchFromGitHub { owner = "sphinx-doc"; repo = "sphinx"; rev = "refs/tags/v${version}"; postFetch = '' # Change ä to æ in file names, since ä can be encoded multiple ways on different # filesystems, leading to different hashes on different platforms. cd "$out"; mv tests/roots/test-images/{testimäge,testimæge}.png sed -i 's/testimäge/testimæge/g' tests/{test_build*.py,roots/test-images/index.rst} ''; hash = "sha256-XGGRWEvd1SbQsK8W5yxDzBd5hlvXcDzr8t5Qa6skH/M="; }; nativeBuildInputs = [ flit-core ]; propagatedBuildInputs = [ alabaster babel docutils imagesize jinja2 packaging pygments requests snowballstemmer sphinxcontrib-applehelp sphinxcontrib-devhelp sphinxcontrib-htmlhelp sphinxcontrib-jsmath sphinxcontrib-qthelp sphinxcontrib-serializinghtml # extra[docs] sphinxcontrib-websupport ] ++ lib.optionals (pythonOlder "3.10") [ importlib-metadata ]; __darwinAllowLocalNetworking = true; nativeCheckInputs = [ defusedxml filelock html5lib pytestCheckHook pytest-xdist ]; preCheck = '' export HOME=$TMPDIR ''; disabledTests = [ # requires network access "test_latex_images" # racy "test_defaults" "test_check_link_response_only" "test_anchors_ignored_for_url" "test_autodoc_default_options" "test_too_many_requests_retry_after_int_delay" # racy with pytest-xdist "test_domain_cpp_build_semicolon" "test_class_alias" "test_class_alias_having_doccomment" "test_class_alias_for_imported_object_having_doccomment" "test_decorators" # requires cython_0, but fails miserably on 3.11 "test_cython" # Could not fetch remote image: http://localhost:7777/sphinx.png "test_copy_images" ] ++ lib.optionals isPyPy [ # PyPy has not __builtins__ which get asserted # https://doc.pypy.org/en/latest/cpython_differences.html#miscellaneous "test_autosummary_generate_content_for_module" "test_autosummary_generate_content_for_module_skipped" # internals are asserted which are sightly different in PyPy "test_autodoc_inherited_members_None" "test_automethod_for_builtin" "test_builtin_function" "test_isattributedescriptor" "test_methoddescriptor" "test_partialfunction" ]; meta = { description = "Python documentation generator"; longDescription = '' Sphinx makes it easy to create intelligent and beautiful documentation. Here are some of Sphinx’s major features: - Output formats: HTML (including Windows HTML Help), LaTeX (for printable PDF versions), ePub, Texinfo, manual pages, plain text - Extensive cross-references: semantic markup and automatic links for functions, classes, citations, glossary terms and similar pieces of information - Hierarchical structure: easy definition of a document tree, with automatic links to siblings, parents and children - Automatic indices: general index as well as a language-specific module indices - Code handling: automatic highlighting using the Pygments highlighter - Extensions: automatic testing of code snippets, inclusion of docstrings from Python modules (API docs) via built-in extensions, and much more functionality via third-party extensions. - Themes: modify the look and feel of outputs via creating themes, and re-use many third-party themes. - Contributed extensions: dozens of extensions contributed by users; most of them installable from PyPI. Sphinx uses the reStructuredText markup language by default, and can read MyST markdown via third-party extensions. Both of these are powerful and straightforward to use, and have functionality for complex documentation and publishing workflows. They both build upon Docutils to parse and write documents. ''; homepage = "https://www.sphinx-doc.org"; changelog = "https://www.sphinx-doc.org/en/master/changes.html"; license = lib.licenses.bsd3; maintainers = lib.teams.sphinx.members; }; }