blob: 81a791edfc8b71a76586288a6e3850d707be4a26 (
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
|
# Maintainer: trougnouf (Benoit Brummer) < trougnouf at gmail dot com >
# Maintainer: daskol (Daniel Bershatsky) < bepshatsky at yandex dot ru >
pkgname='python-datasets'
pkgver=2.14.0
pkgrel=1
pkgdesc='The largest hub of ready-to-use datasets for ML models with fast, easy-to-use and efficient data manipulation tools'
arch=('x86_64')
url='https://github.com/huggingface/datasets'
license=('Apache')
depends=(
'python-aiohttp'
'python-dill'
'python-fsspec>=2021.11.1'
'python-huggingface-hub'
'python-multiprocess'
'python-numpy>=1.17'
'python-packaging'
'python-pandas'
'python-pyarrow>=6.0.0'
'python-yaml>=5.1'
'python-requests>=2.19.0'
'python-tqdm>=4.62.1'
'python-xxhash'
)
makedepends=('python-build' 'python-installer' 'python-setuptools' 'python-wheel')
optdepends=(
'python-librosa: Audio datasets'
'python-pillow: Vision datasets'
'python-tensorflow: TensorFlow support'
'python-pytorch: PyTorch support'
)
groups=('huggingface')
source=("datasets-${pkgver}.tar.gz::https://github.com/huggingface/datasets/archive/refs/tags/${pkgver}.tar.gz")
sha256sums=('d3f1379efdc48310ac8e3c3fe183e4b6eabf6db1e0b3bebf80309552799544f9')
build() {
python -m build -nw ${srcdir}/datasets-${pkgver}
}
package() {
cd ${srcdir}/datasets-${pkgver}
install -Dm644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
python -m installer --compile-bytecode 1 --destdir $pkgdir dist/*.whl
}
|