blob: 09d5b9a03ec2b6cd3842b23edec9adcd62725670 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Maintainer: Jesus Alvarez <jesusalv@rez.codes>
pkgname=python-cyclopts
pkgver=4.12.0
pkgrel=1
pkgdesc="A modern, intuitive command line interface framework for Python"
arch=('any')
url="https://github.com/BrianPugh/cyclopts"
license=('Apache-2.0')
depends=(
'python'
'python-attrs'
'python-docstring-parser'
'python-rich'
'python-rich-rst'
)
makedepends=('python-build' 'python-installer' 'python-wheel' 'python-hatchling' 'python-hatch-vcs')
source=("https://files.pythonhosted.org/packages/source/c/cyclopts/cyclopts-$pkgver.tar.gz")
sha256sums=('SKIP')
build() {
cd "cyclopts-$pkgver"
python -m build --wheel --no-isolation
}
package() {
cd "cyclopts-$pkgver"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|