blob: a26e0312db71f5cd2324f94bb5e58e65b51c1b91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Maintainer: Luis Martinez <luis dot martinez at disroot dot org>
pkgname=blacktex
pkgver=0.8.6
pkgrel=1
pkgdesc="LaTex code prettifier and formatter"
arch=('any')
url='https://pypi.org/project/blacktex'
license=('custom:proprietary')
depends=('python-pylatexenc' 'python-kgt' 'python-x21')
optdepends=('python-importlib-metadata: required for python<3.8')
makedepends=('python-installer')
source=("https://files.pythonhosted.org/packages/py3/b/$pkgname/$pkgname-$pkgver-py3-none-any.whl")
sha256sums=('885438b798e9edaf4234cca9f7f7a652dc0a2e1daa71ab8bf7aede49dd4383d5')
package() {
PYTHONHASHSEED=0 python -m installer --destdir="$pkgdir/" *.whl
}
|