nixpkgs/pkgs/development/python-modules/nltk/default.nix
2021-12-22 01:27:23 +00:00

39 lines
1 KiB
Nix

{ fetchPypi, buildPythonPackage, lib, singledispatch ? null, isPy3k
, click
, joblib
, regex
, tqdm
}:
buildPythonPackage rec {
version = "3.6.6";
pname = "nltk";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "0f8ff4e261c78605bca284e8d2025e562304766156af32a1731f56b396ee364b";
};
propagatedBuildInputs = [
click
joblib
regex
tqdm
] ++ lib.optional (!isPy3k) singledispatch;
# Tests require some data, the downloading of which is impure. It would
# probably make sense to make the data another derivation, but then feeding
# that into the tests (given that we need nltk itself to download the data,
# unless there's an easy way to download it without nltk's downloader) might
# be complicated. For now let's just disable the tests and hope for the
# best.
doCheck = false;
meta = {
description = "Natural Language Processing ToolKit";
homepage = "http://nltk.org/";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ lheckemann ];
};
}