blob: 1d40e801930aa72fc73850200747e27eeae54f85 (
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
34
35
36
37
38
39
40
|
# Maintainer: Aseem Athale <athaleaseem@gmail.com>
# Contributor: Luis Martinez <luis dot martinez at disroot dot org>
# Contributor: Philip Goto <philip.goto@gmail.com>
pkgname=python-wasabi
_pkg="${pkgname#python-}"
pkgver=1.1.3
pkgrel=5
pkgdesc='Lightweight console printing and formatting toolkit'
arch=('any')
url='https://github.com/explosion/wasabi'
license=('MIT')
depends=('python')
makedepends=('python-build' 'python-installer' 'python-setuptools' 'python-wheel')
checkdepends=('python-pytest' 'jupyter-nbconvert')
source=("$pkgname-$pkgver.tar.gz::https://files.pythonhosted.org/packages/source/w/$_pkg/$_pkg-$pkgver.tar.gz")
b2sums=('0c0641c4def2a56adb012a021bd06d600ded7d2dea52c7f098cc5dacd2cc9727d5354ba111782f89e2f80f2c0538468eed43d040c02eaddcc0c0c7668565e734')
prepare() {
cd "$_pkg-$pkgver"
# sed -i '/packages=/c\packages=["wasabi"],' setup.py
}
build() {
cd "$_pkg-$pkgver"
python -m build --wheel --no-isolation
}
#check() {
# cd "$_pkg-$pkgver"
# pytest -x
#}
package() {
cd "$_pkg-$pkgver"
PYTHONHASHSEED=0 python -m installer --destdir="$pkgdir" dist/*.whl
# local _site="$(python -c 'import site; print(site.getsitepackages()[0])')"
install -d "$pkgdir/usr/share/licenses/$pkgname/"
ln -s "$_site/$_pkg-$pkgver.dist-info/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/"
}
|