summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b822c9a246290cc657e3a7f3237d19e9eea2e830 (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: Guillaume Horel <guillaume.horel@gmail.com>

pkgname=python-ubelt
_pkgname=ubelt
pkgver=1.3.7
pkgrel=2
pkgdesc="A Python utility belt containing simple tools"
arch=('any')
url="https://github.com/Erotemic/ubelt"
license=('Apache-2.0')
depends=(python python-blake3 python-colorama python-dateutil python-pygments python-xxhash)
optdepends=(python-numpy)
makedepends=(python-build python-installer python-setuptools python-wheel)
checkdepends=(python-pytest python-requests python-xdoctest)
source=("https://files.pythonhosted.org/packages/source/${_pkgname::1}/$_pkgname/$_pkgname-$pkgver.tar.gz")
sha256sums=('41837abc852ce01bbaea8eb3da15f49c4c0d68340f546c6e2ee00fbc5be75f39')

build(){
  cd "$_pkgname-$pkgver"
  python -m build --wheel --no-isolation
}

package(){
  cd "$_pkgname-$pkgver"
  python -m installer --destdir="$pkgdir" dist/*.whl
}

check() {
  cd "$_pkgname-$pkgver"
  PYTHONPATH=. pytest tests
}

### vim:ts=2:sw=2:et: