From d6d81cfd591e34f041bb0a705377e8ab25afe39d Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Mon, 9 Feb 2026 20:56:15 +0000 Subject: [PATCH 1/2] circus: use python3Packages instead of python310Packages Tracking: https://github.com/NixOS/nixpkgs/issues/488818 --- pkgs/top-level/all-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7a8afd246a4e..3e78887424fb 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2019,7 +2019,7 @@ with pkgs; protobuf = protobuf_21; }; - circus = with python310Packages; toPythonApplication circus; + circus = with python3Packages; toPythonApplication circus; inherit (callPackage ../applications/networking/remote/citrix-workspace { }) citrix_workspace_25_08_10 From 2c3e961b7b257aa3e5731e584430b5d729601de9 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Mon, 9 Feb 2026 20:56:43 +0000 Subject: [PATCH 2/2] circus: move to by-name --- pkgs/by-name/ci/circus/package.nix | 1 + pkgs/top-level/all-packages.nix | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) create mode 100644 pkgs/by-name/ci/circus/package.nix diff --git a/pkgs/by-name/ci/circus/package.nix b/pkgs/by-name/ci/circus/package.nix new file mode 100644 index 000000000000..61c16c756763 --- /dev/null +++ b/pkgs/by-name/ci/circus/package.nix @@ -0,0 +1 @@ +{ python3Packages }: with python3Packages; toPythonApplication circus diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3e78887424fb..c87b3f879ff8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2019,8 +2019,6 @@ with pkgs; protobuf = protobuf_21; }; - circus = with python3Packages; toPythonApplication circus; - inherit (callPackage ../applications/networking/remote/citrix-workspace { }) citrix_workspace_25_08_10 ;