From 45e266fad1b4eccaca5ac42a90b2d88fdbf041c5 Mon Sep 17 00:00:00 2001 From: Ihar Hrachyshka Date: Sun, 25 Jan 2026 14:47:18 -0500 Subject: [PATCH] python3Packages.mlx: remove gguf-tools source checkout from buildInputs The `gguf-tools` are defined in `let` section to point to a source checkout, not nixpkgs derivation. Note: regardless, the tools are not used in runtime. Instead, some files from the source checkout are statically compiled during the build. --- pkgs/development/python-modules/mlx/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/development/python-modules/mlx/default.nix b/pkgs/development/python-modules/mlx/default.nix index 2cddc0359c93..c68c8d78bd68 100644 --- a/pkgs/development/python-modules/mlx/default.nix +++ b/pkgs/development/python-modules/mlx/default.nix @@ -104,7 +104,6 @@ buildPythonPackage (finalAttrs: { buildInputs = [ fmt - gguf-tools nlohmann_json pybind11 ]