From 8c63be6c613467ebde11be70400bfe56fcc7d48a Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Tue, 13 Aug 2024 20:50:22 +0300 Subject: [PATCH] python312Packages.beniget: modernize --- pkgs/development/python-modules/beniget/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/beniget/default.nix b/pkgs/development/python-modules/beniget/default.nix index 3e3e104a9062..0ef62fc0573c 100644 --- a/pkgs/development/python-modules/beniget/default.nix +++ b/pkgs/development/python-modules/beniget/default.nix @@ -15,11 +15,12 @@ buildPythonPackage rec { sha256 = "75554b3b8ad0553ce2f607627dad3d95c60c441189875b98e097528f8e23ac0c"; }; - propagatedBuildInputs = [ gast ]; + dependencies = [ gast ]; meta = { description = "Extract semantic information about static Python code"; homepage = "https://github.com/serge-sans-paille/beniget"; license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ ]; }; }