summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 41e2cd4fbc201e038b6e1f4a414322da0f50d9ef (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
33
34
# Maintainer: Luis Martinez <luis dot martinez at disroot dot org>
# Contributor: Kaizhao Zhang <zhangkaizhao@gmail.com>

pkgname=python-zimports
pkgver=0.6.0
pkgrel=1
pkgdesc="Python import rewriter"
arch=('any')
url="https://github.com/sqlalchemyorg/zimports"
license=('MIT')
depends=('python>=3.7' 'python-pyflakes' 'python-flake8-import-order' 'python-tomli')
makedepends=('python-setuptools' 'python-build' 'python-installer' 'python-wheel')
checkdepends=('python-pytest')
source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
sha256sums=('192aa475dc0fe7fe60d1fe59e708974b755ab2c8769d5430b267198e2ce1d189')

build() {
	cd "zimports-$pkgver"
	python -m build --wheel --no-isolation
}

check() {
	cd "zimports-$pkgver"
	pytest -x
}

package() {
	cd "zimports-$pkgver"
	PYTHONHASHSEED=0 python -m installer --destdir="$pkgdir/" dist/*.whl
	install -Dm644 README.rst -t "$pkgdir/usr/share/doc/$pkgname/"
	local _site="$(python -c 'import site; print(site.getsitepackages()[0])')"
	install -d "$pkgdir/usr/share/licenses/$pkgname/"
	ln -s "$_site/zimports-$pkgver.dist-info/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/"
}