blob: 16207cb9e74e422085eab3eee2ddc97fa616db23 (
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: Caleb Maclennan <caleb@alerque.com>
pkgname=python-dvc-objects
_pkgname=${pkgname#python-}
pkgver=5.1.0
pkgrel=2
pkgdesc='DVC objects'
arch=(any)
license=(Apache-2.0)
url="https://github.com/iterative/$_pkgname"
_pydeps=(diskcache
flatten-dict
fsspec
funcy
nanotime
shortuuid
tqdm)
depends=(python
"${_pydeps[@]/#/python-}")
makedepends=(python-{build,installer,wheel}
python-setuptools-scm)
optdepends=('python-adlfs: azure support'
'python-azure-identity: azure support'
'python-knack: azure support'
'python-pyarrow: hdfs support'
'python-fsspec: hdfs support'
'python-aiohttp-retry: http support'
'python-ossfs: oss support'
'python-s3fs: s3 support'
'python-aiobotocore: s3 support'
'python-boto3: s3 support'
'python-bcrypt: ssh support'
'python-sshfs: ssh support'
'python-webdav4: webdav support')
_archive=("$_pkgname-$pkgver")
source=("https://files.pythonhosted.org/packages/source/${_pkgname::1}/$_pkgname/$_archive.tar.gz")
sha256sums=('22e919620f9ecf428a0d295efca8073d1c0e87206dd8e1f52b1d9520fa25b814')
build() {
cd "$_archive"
python -m build -wn
}
package() {
cd "$_archive"
python -m installer -d "$pkgdir" dist/*.whl
}
|