python310Packages.pygments 0 -> 1 attrpath: python310Packages.pygments 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/r9jccm6p17vhds5jpl5m5dw1dsz5bdg9-packages.json.drv building '/nix/store/r9jccm6p17vhds5jpl5m5dw1dsz5bdg9-packages.json.drv'... Going to be running update for following packages: - python3.10-pygments-2.14.0 Press Enter key to continue... Running update for: - python3.10-pygments-2.14.0: UPDATING ... - python3.10-pygments-2.14.0: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/pygments/default.nix b/pkgs/development/python-modules/pygments/default.nix index a7b2acd55ca9..8531c0e700a7 100644 --- a/pkgs/development/python-modules/pygments/default.nix +++ b/pkgs/development/python-modules/pygments/default.nix @@ -10,12 +10,12 @@ let pygments = buildPythonPackage rec { pname = "pygments"; - version = "2.14.0"; + version = "2.15.1"; src = fetchPypi { pname = "Pygments"; inherit version; - hash = "sha256-s+0GqeismpquWm9dvniopYZV0XtDuTwHjwlN3Edq4pc="; + hash = "sha256-is5NPB3UgYlLIAX1YOrQ+fGe5k/pgzZr4aIeFx0Sd1w="; }; propagatedBuildInputs = [ No auto update branch exists Old version 2.14.0" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi # build-system , setuptools # tests , pytestCheckHook , wcag-contrast-ratio }: let pygments = buildPythonPackage rec { pname = "pygments"; version = "2.15.1"; format = "pyproject"; src = fetchPypi { pname = "Pygments"; inherit version; hash = "sha256-is5NPB3UgYlLIAX1YOrQ+fGe5k/pgzZr4aIeFx0Sd1w="; }; nativeBuildInputs = [ setuptools ]; # circular dependencies if enabled by default doCheck = false; nativeCheckInputs = [ pytestCheckHook wcag-contrast-ratio ]; disabledTestPaths = [ # 5 lines diff, including one nix store path in 20000+ lines "tests/examplefiles/bash/ltmain.sh" ]; pythonImportsCheck = [ "pygments" ]; passthru.tests = { check = pygments.overridePythonAttrs (_: { doCheck = true; }); }; meta = with lib; { changelog = "https://github.com/pygments/pygments/releases/tag/${version}"; homepage = "https://pygments.org/"; description = "A generic syntax highlighter"; mainProgram = "pygmentize"; license = licenses.bsd2; maintainers = with maintainers; [ ]; }; }; in pygments