mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-20 03:47:16 +02:00
34 lines
893 B
Text
34 lines
893 B
Text
# Contributor: Michał Polański <michal@polanski.me>
|
|
# Maintainer: Michał Polański <michal@polanski.me>
|
|
pkgname=py3-pretend
|
|
pkgver=1.0.9
|
|
pkgrel=7
|
|
pkgdesc="Library for stubbing in Python"
|
|
url="https://github.com/alex/pretend"
|
|
license="BSD-3-Clause"
|
|
arch="noarch"
|
|
depends="python3"
|
|
makedepends="py3-gpep517 py3-installer py3-setuptools py3-wheel"
|
|
checkdepends="py3-pytest"
|
|
subpackages="$pkgname-pyc"
|
|
source="https://github.com/alex/pretend/archive/v$pkgver/py3-pretend-$pkgver.tar.gz"
|
|
builddir="$srcdir/pretend-$pkgver"
|
|
|
|
build() {
|
|
gpep517 build-wheel \
|
|
--wheel-dir .dist \
|
|
--output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
check() {
|
|
pytest
|
|
}
|
|
|
|
package() {
|
|
python3 -m installer -d "$pkgdir" \
|
|
.dist/pretend-$pkgver-py2.py3-none-any.whl
|
|
}
|
|
|
|
sha512sums="
|
|
976e3272557aecfb11e4147a868ea96e23546e277d57d726f41b945103bef3451039716e6bbc5082d691fa1fd331c06b3d0f8b254deb0510948153571326eaf0 py3-pretend-1.0.9.tar.gz
|
|
"
|