From 6952069832f45e58a2a14959af7163a30f3997ee Mon Sep 17 00:00:00 2001 From: h7x4 Date: Sun, 26 Oct 2025 14:54:45 +0900 Subject: [PATCH] python3Packages.whey: lib.filterAttrs -> lib.removeAttrs --- pkgs/development/python-modules/whey/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/whey/default.nix b/pkgs/development/python-modules/whey/default.nix index ace0f3fbad75..e07c68a3a423 100644 --- a/pkgs/development/python-modules/whey/default.nix +++ b/pkgs/development/python-modules/whey/default.nix @@ -55,7 +55,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "whey" ]; optional-dependencies = { - all = lib.flatten (lib.attrValues (lib.filterAttrs (n: v: n != "all") optional-dependencies)); + all = lib.flatten (lib.attrValues (lib.removeAttrs optional-dependencies [ "all" ])); editable = [ editables ];