python3Packages.markdown2: lib.filterAttrs -> lib.removeAttrs

This commit is contained in:
h7x4
2025-10-27 19:07:35 +09:00
parent d79a2afea1
commit 38190d2687
@@ -34,7 +34,7 @@ buildPythonPackage rec {
code_syntax_highlighting = [ pygments ];
wavedrom = [ wavedrom ];
latex = [ latex2mathml ];
all = lib.flatten (lib.attrValues (lib.filterAttrs (n: v: n != "all") optional-dependencies));
all = lib.flatten (lib.attrValues (lib.removeAttrs optional-dependencies [ "all" ]));
};
meta = {