blob: 7e2eeba84250b4ebfcef716851149e501d05b730 (
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
|
# shellcheck shell=bash disable=SC2034,SC2154
# Maintainer: Wu Zhenyu <wuzhenyu@ustc.edu>
# Updated by https://github.com/wakatime/repl-python-wakatime/blob/main/.github/workflows/main.yml
_pkgname=repl-python-wakatime
pkgname=python-$_pkgname
pkgver=0.0.12
pkgrel=1
pkgdesc="Python REPL plugin for automatic time tracking and metrics generated from your programming activity"
arch=(any)
url=https://github.com/wakatime/repl-python-wakatime
makedepends=(python-installer)
optdepends=(
'python-keyring: support codestats'
'wakatime: support wakatime'
'ptpython: support ptpython'
'ipython: support ipython'
)
license=(GPLv3)
_py=py3
source=(
"https://files.pythonhosted.org/packages/$_py/${_pkgname:0:1}/$_pkgname/${_pkgname//-/_}-$pkgver-$_py-none-any.whl"
)
sha256sums=('f2088e1cf2ca4382ef64d91498776deda0d6e8697cc5550460b855ed5917f1ba')
package() {
cd "$srcdir" || return 1
python -m installer --destdir="$pkgdir" ./*.whl
}
|