17 lines
470 B
Plaintext
17 lines
470 B
Plaintext
# Description: Python syntax highlighter
|
|
# URL: https://pygments.org/
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-hatchling
|
|
|
|
name=python3-pygments
|
|
version=2.17.1
|
|
release=1
|
|
source=(https://pypi.org/packages/source/p/pygments/pygments-$version.tar.gz)
|
|
|
|
build() {
|
|
cd pygments-$version
|
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
|
|
}
|