From ab465eeb20f246862a36e89d95ba9f4a2fb81016 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sun, 6 Oct 2024 10:45:58 +0200 Subject: [PATCH] python312Packages.circus: add GaetanLepage as maintainer --- pkgs/development/python-modules/circus/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/circus/default.nix b/pkgs/development/python-modules/circus/default.nix index 858b9142121c..e1d975e5b149 100644 --- a/pkgs/development/python-modules/circus/default.nix +++ b/pkgs/development/python-modules/circus/default.nix @@ -83,11 +83,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "circus" ]; - meta = with lib; { + meta = { description = "Process and socket manager"; homepage = "https://github.com/circus-tent/circus"; changelog = "https://github.com/circus-tent/circus/releases/tag/${version}"; - license = licenses.asl20; - maintainers = [ ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ GaetanLepage ]; }; }