blob: e2b1e83304459e545e4be3df6cbc43f532feb9b8 (
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
|
# Maintainer: Alex Hirzel <alex at hirzel period us>
pkgname='python-strictdoc'
_name=${pkgname#python-}
pkgver='0.0.46'
pkgrel=1
pkgdesc="Software for writing technical requirements and specifications."
url="https://github.com/strictdoc-project/strictdoc"
depends=(
'python-datauri'
'python-docutils'
'python-fastapi'
'python-graphviz'
'python-hatchling'
'python-pybtex'
'python-pygments'
'python-reqif'
'python-textx'
'python-xlrd'
'python-xlsxwriter'
'uvicorn'
)
makedepends=('python-pipreqs' 'python-setuptools')
license=('Apache')
arch=('any')
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz")
sha256sums=('8628496e6410acfa11e77a0d1c9b019adb0cf50f10114971a67f84ccce2195fb')
build() {
cd "${srcdir}/${_name}-${pkgver}"
python -m build --wheel --no-isolation
}
package() {
cd "${srcdir}/${_name}-${pkgver}"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|