blob: 108b61bfee03ab3dc0d2a3f7f2c5c36803ede2cf (
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
|
# Maintainer: sunplan
pkgname=nndownload
pkgver=1.19.2
pkgrel=2
pkgdesc='Download and process links from Niconico (nicovideo.jp)'
arch=('any')
url='https://github.com/AlexAplin/nndownload'
license=('MIT')
depends=('python'
'python-aiohttp'
'python-aiohttp-socks'
'python-beautifulsoup4'
'python-ffmpeg-python'
'python-gevent'
'python-mutagen'
'python-pycryptodome'
'python-requests'
'python-rich'
#'python-tqdm'
'python-urllib3')
makedepends=('python-installer')
source=("https://files.pythonhosted.org/packages/py3/${pkgname::1}/$pkgname/$pkgname-$pkgver-py3-none-any.whl")
sha256sums=('538c9b2cb1fa1077a2852dc96316860b979a8887f2b4ada2d86d35bc39fdffa5')
package() {
python -m installer --destdir="$pkgdir" $pkgname-$pkgver-py3-none-any.whl
}
|