aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py3-inflection/APKBUILD
blob: d72b200f095ca0ea8183d9364d242416edac75a6 (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
# Contributor: Leonardo Arena <rnalrd@alpinelinux.org>
# Maintainer:
pkgname=py3-inflection
_pkgname=inflection
pkgver=0.4.0
pkgrel=0
pkgdesc="Port of Ruby on Rails' inflector to Python"
url="https://github.com/jpvanhal/inflection"
arch="noarch"
license="MIT"
depends="python3"
makedepends="py3-setuptools"
checkdepends="py3-pytest"
source="$_pkgname-$pkgver.tar.gz::https://github.com/jpvanhal/inflection/archive/$pkgver.tar.gz"
builddir="$srcdir"/$_pkgname-$pkgver

replaces="py-inflection" # Backkwards compatibility
provides="py-inflection=$pkgver-r$pkgrel" # Backkwards compatibility

build() {
	python3 setup.py build
}

check() {
	py.test-3
}

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

sha512sums="071b21bdc24f05f7be1e8c51c0cc422d4835b4b6e03cdd2b51717356d4d1bb714ebcd875091e331b7e9be85cfb577a8f80f999ca2bf0c7dd8496bf057ddb144c  inflection-0.4.0.tar.gz"