python3Packages.textblob: init at 0.18.0 (#334134)
This commit is contained in:
commit
d657918db8
35
pkgs/development/python-modules/textblob/default.nix
Normal file
35
pkgs/development/python-modules/textblob/default.nix
Normal file
@ -0,0 +1,35 @@
|
||||
{
|
||||
lib,
|
||||
fetchPypi,
|
||||
buildPythonPackage,
|
||||
setuptools,
|
||||
flit-core,
|
||||
nltk,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "textblob";
|
||||
version = "0.18.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-61B7Yr8ig6cfVr7T4PxO7H04jvdrA2mc+ZQWZXKo2vM=";
|
||||
};
|
||||
|
||||
build-system = [ flit-core ];
|
||||
|
||||
dependencies = [ nltk ];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
pythonImportsCheck = [ "textblob" ];
|
||||
|
||||
meta = with lib; {
|
||||
changelog = "https://github.com/sloria/TextBlob/releases/tag/${version}";
|
||||
description = "Simplified Text processing";
|
||||
homepage = "https://textblob.readthedocs.io/";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ idlip ];
|
||||
};
|
||||
}
|
@ -15771,6 +15771,8 @@ self: super: with self; {
|
||||
|
||||
texsoup = callPackage ../development/python-modules/texsoup { };
|
||||
|
||||
textblob = callPackage ../development/python-modules/textblob { };
|
||||
|
||||
textfsm = callPackage ../development/python-modules/textfsm { };
|
||||
|
||||
textile = callPackage ../development/python-modules/textile { };
|
||||
|
Loading…
Reference in New Issue
Block a user