From fda3d6903ad2d0cc34eefcfa3d2beacbc8024037 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Mon, 13 May 2024 03:19:10 +0200 Subject: [PATCH 1/2] python311Packages.pygments: add sigmanificient to maintainers --- pkgs/development/python-modules/pygments/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pygments/default.nix b/pkgs/development/python-modules/pygments/default.nix index 82c0b2ec326e..c12a9876650f 100644 --- a/pkgs/development/python-modules/pygments/default.nix +++ b/pkgs/development/python-modules/pygments/default.nix @@ -51,7 +51,7 @@ let description = "Generic syntax highlighter"; mainProgram = "pygmentize"; license = licenses.bsd2; - maintainers = with maintainers; [ ]; + maintainers = with maintainers; [ sigmanificient ]; }; }; in From c7153cc3501bfe99b3a31183fa7173c0de937328 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Mon, 13 May 2024 03:37:40 +0200 Subject: [PATCH 2/2] python311Packages.pygments: 2.17.2 -> 2.18.0 --- pkgs/development/python-modules/pygments/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pygments/default.nix b/pkgs/development/python-modules/pygments/default.nix index c12a9876650f..ff8569b9b8eb 100644 --- a/pkgs/development/python-modules/pygments/default.nix +++ b/pkgs/development/python-modules/pygments/default.nix @@ -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 ];