From be4fb2c0b3b026f0305d328d6940bb4798e80505 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Fri, 28 Mar 2025 14:30:06 -0700 Subject: [PATCH] python313Packages.legacy-cgi: 2.6.2 -> 2.6.3 Diff: https://github.com/jackrosenthal/legacy-cgi/compare/refs/tags/v2.6.2...v2.6.3 Changelog: https://github.com/jackrosenthal/legacy-cgi/releases/tag/v2.6.3 --- pkgs/development/python-modules/legacy-cgi/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/legacy-cgi/default.nix b/pkgs/development/python-modules/legacy-cgi/default.nix index 8d01ee0193e9..ede0920e3411 100644 --- a/pkgs/development/python-modules/legacy-cgi/default.nix +++ b/pkgs/development/python-modules/legacy-cgi/default.nix @@ -2,23 +2,23 @@ lib, buildPythonPackage, fetchFromGitHub, - poetry-core, + hatchling, pytestCheckHook, }: buildPythonPackage rec { pname = "legacy-cgi"; - version = "2.6.2"; + version = "2.6.3"; pyproject = true; src = fetchFromGitHub { owner = "jackrosenthal"; repo = "legacy-cgi"; tag = "v${version}"; - hash = "sha256-unVD8gUnF0sP360y/wWT2AkicEZ8nKy7tUK5tcCpQuc="; + hash = "sha256-l2BuSlxAA31VlJ/Fhs4cGbidbXEt/zEH3BiWsuh29GM="; }; - build-system = [ poetry-core ]; + build-system = [ hatchling ]; pythonImportsCheck = [ "cgi" @@ -28,6 +28,7 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; meta = { + changelog = "https://github.com/jackrosenthal/legacy-cgi/releases/tag/${src.tag}"; description = "Fork of the standard library cgi and cgitb modules, being deprecated in PEP-594"; homepage = "https://github.com/jackrosenthal/legacy-cgi"; license = lib.licenses.psfl;