aboutsummaryrefslogtreecommitdiffstats
path: root/community/py3-udev/APKBUILD
blob: 82247de6a9f429fb62dd1ebf87ed61c26bcf74c7 (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
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=py3-udev
pkgver=0.22
pkgrel=0
pkgdesc="Python bindings to libudev"
options="!check" # tries to use pytest_namespace
url="http://pyudev.readthedocs.org"
arch="noarch"
license="LGPL-2.1-or-later"
depends="eudev py3-six"
makedepends="py3-setuptools"
checkdepends="py3-docutils py3-pytest py3-mock py3-hypothesis"
source="py-udev-$pkgver.tar.gz::https://github.com/pyudev/pyudev/archive/v$pkgver.tar.gz"
builddir="$srcdir/pyudev-$pkgver"

replaces="py-udev" # Backwards compatibility
provides="py-udev=$pkgver-r$pkgrel" # Backwards compatibility

build() {
	python3 setup.py build
}

check() {
	PYTHONPATH="$PWD/build/lib" py.test-3
}

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

sha512sums="b509f4442e1c11eea9755fbae867b0aee97221db60d78ed2b8da40c39fb11015982b2e9b423680ed44b3f9db2c84b3a0a57a1e8aad4fb939061e33646638d9e3  py-udev-0.22.tar.gz"