aboutsummaryrefslogtreecommitdiffstats
path: root/community/py3-yarl/APKBUILD
blob: 78d4018db1c5ed236c54dae16586e82beab1772a (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
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
pkgname=py3-yarl
_pkgname=yarl
pkgver=0.14.2
pkgrel=0
pkgdesc="An URL library"
url="http://yarl.readthedocs.io/"
arch="all"
license="ASL 2.0"
depends="py3-multidict py3-pytest"
makedepends="python3-dev"
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
builddir="$srcdir/$_pkgname-$pkgver"

build() {
	cd "$builddir"
	python3 setup.py build
}

check() {
	cd "$builddir"
	python3 setup.py test
}

package() {
	cd "$builddir"
	python3 setup.py install --root="$pkgdir"
}

sha512sums="ffeaeebe46920167346d1a3beb0ede72da226a7188dd08c015a0b73efa649aa28f196d80b6315ab5371179dd9fe9e6962834bbe12d14ef4d6c262576be4fc4a0  yarl-0.14.2.tar.gz"