Package Details: python-wikitextparser 0.55.13-1

Git Clone URL: https://aur.archlinux.org/python-wikitextparser.git (read-only, click to copy)
Package Base: python-wikitextparser
Description: A simple parsing tool for MediaWiki's wikitext markup
Upstream URL: https://github.com/5j9/wikitextparser
Licenses: GPL-3.0-or-later
Submitter: mortzu
Maintainer: carlosal1015
Last Packager: carlosal1015
Votes: 0
Popularity: 0.000000
First Submitted: 2020-07-26 09:41 (UTC)
Last Updated: 2024-04-19 21:23 (UTC)

Latest Comments

andybz commented on 2023-05-21 23:10 (UTC)

Here's an updated PKGBUILD that also removes the need for python-dephell

pkgname=python-wikitextparser
pkgver=0.52.1
pkgrel=1
pkgdesc="simple parsing tool for MediaWiki's wikitext markup"
arch=('any')
url="https://github.com/5j9/wikitextparser"
license=('MIT')
depends=(python)
makedepends=(python-build python-installer python-setuptools python-wheel)
source=("$pkgname-$pkgver.tar.gz::https://github.com/5j9/wikitextparser/archive/v$pkgver.tar.gz")
sha256sums=('caa0d6c1572ee9dc63a9c08872f32bf78a774f6a9c8babcb9216b2212a9cbc2b')

build() {
  cd "$srcdir"/wikitextparser-$pkgver
  python -m build --wheel --no-isolation
}

package() {
  cd "$srcdir"/wikitextparser-$pkgver
  python -m installer --destdir="$pkgdir" dist/*.whl
  install -Dm644 LICENSE.md -t "$pkgdir"/usr/share/licenses/$pkgname
}

dvorapa commented on 2021-11-20 10:38 (UTC)

@mortzu Could you update the package?