blob: 9612fa97e34ded7c96d943e8f4c3b25408771520 (
plain)
1 # Description: Python API for cross-platform colored terminal text.
2 # URL: https://pypi.python.org/pypi/colorama
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-hatchling
5
6 name=python3-colorama
7 version=0.4.6
8 release=1
9 source=(https://github.com/tartley/colorama/archive/$version/$name-$version.tar.gz)
10
11 build() {
12 cd colorama-$version
13
14 /usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
15 /usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
16 }
|