Package Details: python-stanza 1.8.2-1

Git Clone URL: https://aur.archlinux.org/python-stanza.git (read-only, click to copy)
Package Base: python-stanza
Description: Stanford NLP Python library for tokenization, sentence segmentation, NER, and parsing of many human languages
Upstream URL: https://stanfordnlp.github.io/stanza
Licenses: Apache-2.0
Submitter: cjber
Maintainer: yochananmarqos
Last Packager: yochananmarqos
Votes: 0
Popularity: 0.000000
First Submitted: 2020-03-26 17:30 (UTC)
Last Updated: 2024-04-20 20:43 (UTC)

Latest Comments

acgtyrant commented on 2023-08-14 15:55 (UTC)

I adjusted the out-of-date PKGBUILD:

# Maintainer: Cillian Berragan <cjberragan@gmail.com>
# Python package author: Stanford NLP
pkgname=python-stanza
_name=${pkgname#python-}
pkgver=1.5.0
pkgrel=1
pkgdesc="A Python NLP Library for Many Human Languages"
arch=("x86_64")
url="https://stanfordnlp.github.io/stanza/"
license=("Apache")
depends=(
        "python-numpy"
        "python-protobuf"
        "python-requests"
        "python-pytorch"
        "python-tqdm"
        "python-emoji"
)
makedepends=("python-wheel")
source=(https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz)
md5sums=('6dd2a18bc6914f14524cd0f0e40b0881')

package() {
    cd "$_name-$pkgver"
    python setup.py install --root="${pkgdir}/" --optimize=1
}