From 03639c657abaf39b7288dba212cd2ec8eb062626 Mon Sep 17 00:00:00 2001 From: Benjamin Sparks Date: Wed, 21 May 2025 15:50:35 +0200 Subject: [PATCH] nltk-data: skip fixupPhase to avoid needless patching attempts There are no scripts in the `package` folder, only datasets, models, etc. --- pkgs/tools/text/nltk-data/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/text/nltk-data/default.nix b/pkgs/tools/text/nltk-data/default.nix index bdb1ad9af6de..b3e66f7fe4a7 100644 --- a/pkgs/tools/text/nltk-data/default.nix +++ b/pkgs/tools/text/nltk-data/default.nix @@ -10,6 +10,7 @@ let version = "0-unstable-2024-07-29"; nativeBuildInputs = [ unzip ]; dontBuild = true; + dontFixup = true; meta = with lib; { description = "NLTK Data"; homepage = "https://github.com/nltk/nltk_data";