From ab465eeb20f246862a36e89d95ba9f4a2fb81016 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sun, 6 Oct 2024 10:45:58 +0200 Subject: [PATCH 1/2] 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 ]; }; } From ff1081db9926414f218b93bf3ebaf637d8cd4c3b Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sun, 6 Oct 2024 10:46:26 +0200 Subject: [PATCH 2/2] python312Packages.circus: allow local networking to fix darwin tests --- pkgs/development/python-modules/circus/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/circus/default.nix b/pkgs/development/python-modules/circus/default.nix index e1d975e5b149..392a056df64f 100644 --- a/pkgs/development/python-modules/circus/default.nix +++ b/pkgs/development/python-modules/circus/default.nix @@ -83,6 +83,8 @@ buildPythonPackage rec { pythonImportsCheck = [ "circus" ]; + __darwinAllowLocalNetworking = true; + meta = { description = "Process and socket manager"; homepage = "https://github.com/circus-tent/circus";