blob: 6fcd32cf82781283e0d77b4d1d3ff810098dae84 (
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
|
# Contributor: Carlos Giraldo <cgiraldo@gradiant.org>
# Maintainer: Carlos Giraldo <cgiraldo@gradiant.org>
pkgname=py3-pandas
_pkgname=pandas
pkgver=1.0.2
pkgrel=0
pkgdesc="Powerful data structures for data analysis, time series, and statistics"
url="https://pandas.pydata.org/"
arch="all"
license="BSD-3-Clause"
depends="py3-dateutil py3-numpy py3-tz"
makedepends="linux-headers py3-numpy-dev python3-dev py3-setuptools cython"
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
builddir="$srcdir/$_pkgname-$pkgver"
replaces="py-pandas" # Backwards compatibility
provides="py-pandas=$pkgver-r$pkgrel" # Backwards compatibility
build() {
python3 setup.py build
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="c122ebccf7f048d64f105e447d09b0b7daf42d66eaaf4e993a7808b0ae1ca408032e5fd4a9dd0a3ab46cbd28ed48ff097012c53b6a6e1eed8edb3352b674ccda pandas-1.0.2.tar.gz"
|