1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 03:05:48 +03:00
aports/testing/py3-ddt/APKBUILD
2021-04-05 18:19:17 +00:00

33 lines
765 B
Text

# Maintainer: prspkt <prspkt@protonmail.com>
# Contributor: prspkt <prspkt@protonmail.com>
pkgname=py3-ddt
pkgver=1.4.2
pkgrel=0
pkgdesc="Python library to multiply test cases"
url="https://github.com/txels/ddt"
arch="noarch"
license="MIT"
depends="python3"
makedepends="py3-setuptools"
checkdepends="
py3-mock
py3-nose
py3-pytest
py3-yaml
"
source="https://files.pythonhosted.org/packages/source/d/ddt/ddt-$pkgver.tar.gz"
builddir="$srcdir/ddt-$pkgver"
build() {
python3 setup.py build
}
check() {
python3 setup.py test
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="5dd373d64cd176130da5edcc71693ef9566d52e06ad2664307ec540293e7a9769c3f9c325a296896ed3fb3881324ff33c28dc354263c9a819384c331a21e1ae1 ddt-1.4.2.tar.gz"