summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-textblob/package.py
blob: 0055c8fa7b3427b5f6f9aa24653f74278a81b71d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)


class PyTextblob(PythonPackage):
    """TextBlob is a Python (2 and 3) library for processing textual
    data. It provides a simple API for diving into common natural
    language processing (NLP) tasks such as part-of-speech tagging,
    noun phrase extraction, sentiment analysis, classification,
    translation, and more."""

    homepage = "https://textblob.readthedocs.io/"
    url      = "https://github.com/sloria/TextBlob/archive/0.16.0.tar.gz"

    version('0.16.0', sha256='bf29369f3260cc779b22b2b86337bcce0c8e929d994b1c8f0d39545ec2fb33aa')

    depends_on('python@3:', type=('build', 'run'))
    depends_on('py-setuptools', type='build')
    depends_on('py-nltk@3.1:+data', type=('build', 'run'))