Merge pull request #311223 from Sigmanificient/pygments-update

python311Packages.pygments: 2.17.2 -> 2.18.0, add sigmanificient to maintainers
This commit is contained in:
OTABI Tomoya
2024-06-15 00:49:06 +09:00
committed by GitHub
@@ -9,17 +9,20 @@
# tests
pytestCheckHook,
wcag-contrast-ratio,
pythonOlder
}:
let
pygments = buildPythonPackage rec {
pname = "pygments";
version = "2.17.2";
version = "2.18.0";
pyproject = true;
disabled = pythonOlder "3.8"; # 2.18.0 requirement
src = fetchPypi {
inherit pname version;
hash = "sha256-2kbOyf0t5b46inhPQ05MSrZwtP9U1gXEwnF+nUnEw2c=";
hash = "sha256-eG/4AvMukTEb/ziJ9umoboFQX+mfJzW7bWCuDFAE8Zk=";
};
nativeBuildInputs = [ hatchling ];
@@ -51,7 +54,7 @@ let
description = "Generic syntax highlighter";
mainProgram = "pygmentize";
license = licenses.bsd2;
maintainers = with maintainers; [ ];
maintainers = with maintainers; [ sigmanificient ];
};
};
in