blob: af0528121d5c6c85bac7d3c3802634c78364e38f (
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
44
45
46
47
48
49
50
|
# Maintainer: peippo <christoph+aur@christophfink.com>
pkgname="python-pandana"
_name=${pkgname#python-}
pkgdesc="A Python library for network analysis"
url="http://udst.github.io/pandana/"
pkgver=0.7
pkgrel=1
arch=("x86_64")
license=("AGPL-3.0-only")
makedepends=(
"cython"
"python-build"
"python-installer"
"python-oldest-supported-numpy"
"python-setuptools"
"python-wheel"
)
depends=(
"python"
"python-numpy"
"python-pandas"
"python-pytables"
"python-requests"
"python-scikit-learn"
)
optdepends=(
"python-osmnet"
)
source=(
"https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz"
)
b2sums=(
"2635470bd610b419d5a518a341379c4faab9c89fcbbd22184d4e484aa52ba14d4f676004e27eff078b5d9e4f2986f0e824cdcc60400e70436f699680bf360458"
)
build() {
cd "${srcdir}"/${_name}-${pkgver}
python -m build --wheel --no-isolation
}
package() {
cd "${srcdir}/${_name}-${pkgver}"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|