blob: 78e802c111dd697bffaf545807ce0d8f15627ffa (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# Maintainer: Blair Bonnett <blair dot bonnett at gmail dot com>
pkgname=python-blackdoc
_pypi=blackdoc
pkgdesc='Run Black on documentation code snippets'
pkgver=0.4.6
pkgrel=1
url='https://github.com/keewis/blackdoc'
license=('MIT')
arch=('any')
depends=(
'python-black'
'python-more-itertools'
'python-pathspec'
'python-rich'
'python-tomli'
)
optdepends=(
'ipython: for working with .ipynb files'
'python-tokenize-rt: for working with .ipynb files'
)
makedepends=(
'python-build'
'python-installer'
'python-setuptools'
'python-setuptools-scm'
'python-wheel'
)
checkdepends=(
'python-pytest'
)
source=(
"https://files.pythonhosted.org/packages/source/${_pypi::1}/$_pypi/$_pypi-$pkgver.tar.gz"
)
sha256sums=(
'9cce04cd898ed0ceb1c423836e62024e1d118a38ee5f760b931cadf7761b964f'
)
build() {
cd "$_pypi-$pkgver"
python -m build --wheel --no-isolation
}
check() {
cd "$_pypi-$pkgver"
rm -rf test-env
python -m venv --system-site-packages test-env
test-env/bin/python -m installer dist/"blackdoc-$pkgver"*.whl
test-env/bin/python -m pytest
}
package() {
cd "$_pypi-$pkgver"
python -m installer --destdir="$pkgdir" dist/"blackdoc-$pkgver"*.whl
install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
local site_packages=$(python -c "import site; print(site.getsitepackages()[0])")
rm -rf "$pkgdir/$site_packages/blackdoc/tests"
}
|