blob: 8e6133d74e7cd4389e6b7a749663dd08d87872b9 (
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
29
30
31
32
|
# Maintainer: Raphael Nestler <raphael.nestler@gmail.com>
# Contributer: Jesus Alvarez <jesusalv@rez.codes>
pkgname=python-cyclopts4
pkgver=4.11.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")
provides=("python-cyclopts=$pkgver")
conflicts=('python-cyclopts')
build() {
cd "cyclopts-$pkgver"
python -m build --wheel --no-isolation
}
package() {
cd "cyclopts-$pkgver"
python -m installer --destdir="$pkgdir" dist/*.whl
}
sha256sums=('1ffcb9990dbd56b90da19980d31596de9e99019980a215a5d76cf88fe452e94d')
|