blob: e8f153dadae711c4294197be9353619fe305c803 (
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
|
# Maintainer: sunplan
pkgname=nndownload
pkgver=1.18
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-setuptools'
'python-tqdm'
'python-urllib3')
makedepends=('python-setuptools'
'dos2unix')
source=("https://files.pythonhosted.org/packages/py3/${pkgname::1}/$pkgname/$pkgname-$pkgver-py3-none-any.whl")
sha256sums=('f4cd35fa44c61ffbce6fa654d9711ec27b90d9d81acc74d4d642775365a9bbad')
package() {
python -m installer --destdir="$pkgdir" $pkgname-$pkgver-py3-none-any.whl
}
|