Files
nixpkgs/pkgs/development/python-modules/nltk/data-dir.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
241 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
pkgs,
python3Packages,
}:
lib.makeOverridable (
{ ... }@nltkDataPkgs:
f:
pkgs.symlinkJoin {
inherit (python3Packages.nltk) meta;
name = "nltk-data-dir";
paths = f nltkDataPkgs;
}
) python3Packages.nltk.data