summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 61ecf23a57f26fa4d282ea0dce1e1a351fe02b8c (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
35
36
37
38
39
40
41
42
43
# Maintainer: Luis Martinez <luis dot martinez at disroot dot org>
# Contributor: Will Handley <wh260@cam.ac.uk> (aur.archlinux.org/account/wjhandley)

pkgname=python-persim
_pkg=persim
pkgver=0.3.1
pkgrel=1
pkgdesc="Distances and representations of persistence diagrams"
arch=('any')
url="https://github.com/scikit-tda/persim"
license=('MIT')
depends=(
	'python-deprecated'
	'python-hopcroftkarp'
	'python-joblib'
	'python-matplotlib'
	'python-numpy'
	'python-scipy'
	'python-scikit-learn')
makedepends=('python-setuptools' 'python-build' 'python-installer' 'python-wheel')
checkdepends=('python-pytest')
source=("$pkgname-$pkgver.tar.gz::https://files.pythonhosted.org/packages/source/p/$_pkg/$_pkg-$pkgver.tar.gz")
sha256sums=('ef0f0a247adcf6104ecac14117db0b24581710ea8a8d964816805395700b4975')

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

check() {
	cd "$_pkg-$pkgver"
	PYTHONPATH="$PWD" pytest -x --disable-warnings
}

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