33 lines
1.0 KiB
Bash
33 lines
1.0 KiB
Bash
# Template file for 'python3-pandas'
|
|
pkgname=python3-pandas
|
|
version=1.2.0
|
|
revision=1
|
|
wrksrc="pandas-${version}"
|
|
build_style=python3-module
|
|
hostmakedepends="python3-setuptools python3-Cython python3-numpy"
|
|
makedepends="python3-devel python3-numpy python3-dateutil python3-pytz"
|
|
depends="python3-numpy python3-dateutil python3-pytz"
|
|
checkdepends="python3-pytest python3-hypothesis $depends"
|
|
short_desc="Python3 data analysis library"
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
license="BSD-3-Clause"
|
|
homepage="https://pandas.pydata.org/"
|
|
changelog="https://pandas.pydata.org/pandas-docs/stable/whatsnew/index.html"
|
|
distfiles="https://github.com/pandas-dev/pandas/archive/v${version}.tar.gz"
|
|
checksum=7e8423c76e404aac38a5664713091fced5a4e7cf850f212f5dd41a000b3ae215
|
|
|
|
pre_build() {
|
|
# setup.py allows a -j argument to parallelize builds
|
|
make_build_args+=" ${makejobs}"
|
|
}
|
|
|
|
do_check() {
|
|
# The test_raw_roundtrip relies on a clipboard
|
|
python3 -m pytest build/lib*/pandas \
|
|
-r sxX --strict -k 'not test_raw_roundtrip'
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|