Skip to content
Snippets Groups Projects
APKBUILD 813 B
Newer Older
Leo's avatar
Leo committed
# Contributor: Leo <thinkabit.ukim@gmail.com>
Leo's avatar
Leo committed
# Maintainer:
Leo's avatar
Leo committed
pkgname=py3-deprecated
pkgver=1.2.12
Leo's avatar
Leo committed
pkgdesc="@deprecated decorator to deprecate old python classes, functions or methods."
url="https://github.com/tantale/deprecated"
arch="noarch"
license="MIT"
depends="python3 py3-wrapt<2"
makedepends="py3-setuptools"
checkdepends="py3-pytest py3-pytest-cov"
source="$pkgname-$pkgver.tar.gz::https://github.com/tantale/deprecated/archive/v$pkgver.tar.gz"
builddir="$srcdir/deprecated-$pkgver"

build() {
	python3 setup.py build
}

check() {
	python3 -m pytest
}

package() {
	python3 setup.py install --prefix=/usr --root="$pkgdir"
}

sha512sums="ff9b03a35b688474b6d5390347c4acdf5e19fcee5f7fcbb61a456c6819adbcda72ce00200d55b92c65873addad5abf9d1d5617bf477f64beb08ca23f10ebaea2  py3-deprecated-1.2.12.tar.gz"