blob: 985fc322a9dbc8c2b6e5976742635bf8492cc51a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{
lib,
fetchPypi,
buildPythonPackage,
setuptools,
flit-core,
nltk,
}:
buildPythonPackage rec {
pname = "textblob";
version = "0.19.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-Cj0GpHz3dZRB2jQYxIQ67TeXqZi+uiEIxiRaICD4OwE=";
};
build-system = [ flit-core ];
dependencies = [ nltk ];
doCheck = true;
pythonImportsCheck = [ "textblob" ];
meta = {
changelog = "https://github.com/sloria/TextBlob/releases/tag/${version}";
description = "Simplified Text processing";
homepage = "https://textblob.readthedocs.io/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ idlip ];
};
}
|