Package Details: python-wikitextparser 1.0.3-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: None
Maintainer: carlosal1015
Last Packager: carlosal1015
Votes: 0
Popularity: 0.000000
First Submitted: 2020-07-26 09:41 (UTC)
Last Updated: 2026-08-01 03:00 (UTC)

Latest Comments

buovjaga commented on 2026-07-22 06:51 (UTC)

Looks like python-uv-build should be added as a dependency. If it's missing, the build will fail with

* Building wheel...

Traceback (most recent call last):
  File "/usr/lib/python3.14/site-packages/pyproject_hooks/_impl.py", line 402, in _call_hook
    raise BackendUnavailable(
    ...<4 lines>...
    )
pyproject_hooks._impl.BackendUnavailable: Cannot import 'uv_build'

ERROR Backend 'uv_build' is not available.

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?