blob: 4faaed9b00ffda73a6c6e6c428d7bfad618db00f (
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
33
|
# Maintainer: Marcus Johansson <polarn@gmail.com>
pkgname=python-validio-cli
_name=validio_cli
pkgver=0.27.4
pkgrel=1
pkgdesc="CLI to interact with the Validio platform"
url="https://pypi.org/project/validio-cli/"
depends=(
'python-camel-converter'
'python-classdiff'
'python-prompt_toolkit'
'python-tabulate'
'python-typer'
'python-validio-sdk')
makedepends=(
'python-build'
'python-installer'
'python-wheel')
license=('Apache-2.0')
arch=(any)
source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz")
sha256sums=('463ab8b973cf00d2ed8683e6ba50ff9ec5ba5e43ce52e3f4b6cbb6ddbbaca134')
build() {
cd "$_name-$pkgver"
python -m build --wheel --no-isolation
}
package() {
cd "$_name-$pkgver"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|