summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 11c8c4749090817c225bb8ba4adc223fd8884951 (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
# Maintainer: Sidney Kuyateh <autinerd-arch@kuyateh.eu>

pkgname=python-pytest-cases
pkgver=3.6.14
pkgrel=1
pkgdesc='Separate test code from test cases in pytest.'
url='https://smarie.github.io/python-pytest-cases/'
makedepends=(python-build python-installer python-wheel python-setuptools-scm)
depends=(python-makefun python-decopatch)
license=('GPL2')
arch=('any')
source=("git+https://github.com/smarie/${pkgname}.git#tag=${pkgver}")
sha512sums=('SKIP')

build() {
    cd "$srcdir/$pkgname"
    python -m build --wheel --no-isolation
}

package() {
    cd "$srcdir/$pkgname"
    python -m installer --destdir="$pkgdir" dist/pytest_cases-${pkgver}-py2.py3-none-any.whl
    install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
}