summary refs log tree commit diff
path: root/pkgs/tools/text
diff options
context:
space:
mode:
authorMaksym Balatsko <maksym.balatsko-ext@arista.com>2023-09-19 10:06:06 -0700
committerYt <happysalada@tuta.io>2023-09-20 09:15:21 +0000
commit6187c4ded11cf25ca683b328a00a7f6c7851a2c0 (patch)
treefebba4d39c1bf71007f9bb0001e4641a20244bbc /pkgs/tools/text
parent5e08b59977c43858a1a3794e3a37769b49336d2e (diff)
downloadnixpkgs-6187c4ded11cf25ca683b328a00a7f6c7851a2c0.tar
nixpkgs-6187c4ded11cf25ca683b328a00a7f6c7851a2c0.tar.gz
nixpkgs-6187c4ded11cf25ca683b328a00a7f6c7851a2c0.tar.bz2
nixpkgs-6187c4ded11cf25ca683b328a00a7f6c7851a2c0.tar.lz
nixpkgs-6187c4ded11cf25ca683b328a00a7f6c7851a2c0.tar.xz
nixpkgs-6187c4ded11cf25ca683b328a00a7f6c7851a2c0.tar.zst
nixpkgs-6187c4ded11cf25ca683b328a00a7f6c7851a2c0.zip
nltk-data: add stopwords
Diffstat (limited to 'pkgs/tools/text')
-rw-r--r--pkgs/tools/text/nltk_data/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/tools/text/nltk_data/default.nix b/pkgs/tools/text/nltk_data/default.nix
index 604be4c2ae0..118598083d5 100644
--- a/pkgs/tools/text/nltk_data/default.nix
+++ b/pkgs/tools/text/nltk_data/default.nix
@@ -48,4 +48,9 @@ lib.makeScope newScope (self: {
     location = "taggers";
     hash = "sha256-ilTs4HWPUoHxQb4kWEy3wJ6QsE/98+EQya44gtV2inw=";
   });
+  stopwords = makeNltkDataPackage ({
+    pname = "stopwords";
+    location = "corpora";
+    hash = "sha256-Rj1jnt6IDEmBbSIHHueyEvPmdE4EZ6/bJ3qehniebbk=";
+  });
 })