blob: 3b81c9d0fa4ac36ca5b54d5bb0636a33a7285944 (
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
|
# Maintainer: Iyán Méndez Veiga <me (at) iyanmv (dot) com>
pkgname=python-yfinance
_name=${pkgname#python-}
pkgver=0.2.48
pkgrel=1
pkgdesc="Yahoo! Finance market data downloader (+faster Pandas Datareader)"
arch=(any)
url=https://github.com/ranaroussi/yfinance
license=(Apache-2.0)
depends=(
python-beautifulsoup4
python-cryptography
python-frozendict
python-html5lib
python-lxml
python-multitasking
python-numpy
python-pandas
python-peewee
python-platformdirs
python-pytz
python-requests
)
optdepends=(
'python-pandas-datareader: to use pandas_datareader'
'python-requests-cache: no spam'
'python-requests-ratelimiter: no spam'
'python-scipy: repair'
)
makedepends=(
python-build
python-installer
python-setuptools
python-wheel
)
source=($_name-$pkgver.tar.gz::https://github.com/ranaroussi/$_name/archive/refs/tags/$pkgver.tar.gz)
b2sums=('0288eeb1561438e00d5970bef7fa599f0aaae78394ef95023d2c05bfe800e765347b9e837504e4597e02f361c4e1648cd5c5c204d4c79a9fdc022f58c74fd573')
build() {
cd $_name-$pkgver
python -m build --wheel --no-isolation
}
package() {
cd $_name-$pkgver
python -m installer --destdir="$pkgdir" dist/*.whl
}
|