Package Details: python-tabula 2.10.0-1

Git Clone URL: https://aur.archlinux.org/python-tabula.git (read-only, click to copy)
Package Base: python-tabula
Description: Simple wrapper for tabula, read tables from PDF into DataFrame
Upstream URL: https://github.com/chezou/tabula-py
Licenses: MIT
Provides: python-tabula
Submitter: g33k
Maintainer: 0fflineuser
Last Packager: 0fflineuser
Votes: 1
Popularity: 0.000000
First Submitted: 2017-12-29 00:41 (UTC)
Last Updated: 2025-12-23 14:14 (UTC)

Dependencies (8)

Required by (1)

Sources (1)

Latest Comments

g33k commented on 2025-12-23 13:22 (UTC)

@0fflineuser this package doesn't have a maintainer right now. Anyone can adopt and update the PKGBUILD. Please consider adopting if you're actively using this :)

0fflineuser commented on 2025-12-23 08:26 (UTC) (edited on 2025-12-23 08:27 (UTC) by 0fflineuser)

Hi, Here is an up to date PKGBUILD, could you update it please ? :

pkgname=python-tabula
pkgver=2.10.0
pkgrel=1
pkgdesc='Simple wrapper for tabula, read tables from PDF into DataFrame'
url="https://github.com/chezou/tabula-py"
license=('MIT')
arch=('any')
provides=('python-tabula')
makedepends=('python-build' 'python-installer' 'python-wheel')
depends=('java-runtime' 'python' 'python-pandas' 'python-requests' 'python-numpy')
_name="tabula_py"
source=("$_name-$pkgver.tar.gz::https://files.pythonhosted.org/packages/source/${_name::1}/${_name//-/_}/${_name//-/_}-$pkgver.tar.gz")
sha512sums=('1c952a775933c6acca75a2de5f66d7f9ca0de8844058df6799e19036cb4b93365e6945a4cef70282c99fe153898ab2f297dc3ab988a237ed5a3ece10d4e1f7c7')

build() {
  cd "$_name-$pkgver"
  python -m build --wheel --no-isolation
}

package() {
  cd "$_name-$pkgver"
  python -m installer --prefix="/usr" --destdir="${pkgdir}" dist/*.whl
}