blob: 7d91616f05f12dec978447f5080354945e656658 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: Luca Fulgenzi <fulgenzi.luca@gmail.com>
pkgname=python-seppia
pkgver=0.1.0
pkgrel=1
pkgdesc='Seppia — personal assistant CLI'
arch=('any')
url='https://github.com/lucafulgenzi/seppia'
license=('MIT')
depends=('python' 'python-typer' 'python-rich' 'python-httpx' 'python-websockets')
makedepends=('python-build' 'python-installer' 'python-hatchling')
source=("https://files.pythonhosted.org/packages/source/s/seppia/seppia-${pkgver}.tar.gz")
sha256sums=('SKIP')
build() {
cd "seppia-${pkgver}"
python -m build --wheel --no-isolation
}
package() {
cd "seppia-${pkgver}"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|