blob: 2daf65461ed3f235c3b8a11c92d30a99cb785ca2 (
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
|
# Maintainer: Caleb Maclennan <caleb@alerque.com>
pkgname=python-scmrepo
_pyname=${pkgname#python-}
pkgver=3.1.0
pkgrel=1
pkgdesc='SCM wrapper and fsspec filesystem for Git for use in DVC'
arch=(any)
license=(Apache)
url="https://github.com/iterative/${_pyname}"
_pydeps=(asyncssh
dulwich
fsspec
funcy
gitpython
pathspec
pygit2
pygtrie)
depends=(python
"${_pydeps[@]/#/python-}")
makedepends=(python-{build,installer,wheel}
python-setuptools-scm)
checkdepends=(python-cryptography
python-typing_extensions
python-pytest)
_archive=("$_pyname-$pkgver")
source=("https://files.pythonhosted.org/packages/source/${_pyname::1}/$_pyname/$_archive.tar.gz")
sha256sums=('9b91f3afe52cfe5707d7b4d4af9ff0403a4200152d2a4ea1388b325071ded8a9')
build() {
cd "$_archive"
python -m build -wn
}
check() {
cd "$_archive"
# tests require pytest_test_utils, disabled until packaged
# pytest
}
package() {
cd "$_archive"
python -m installer -d "$pkgdir" dist/*.whl
}
|