blob: 9610c225362f2b89e84b323373771291153d6a0b (
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
|
pkgname=monit-docker
pkgver=0.0.41
pkgrel=1
pkgdesc='Monitor docker containers resources usage and execute docker commands or inside containers'
arch=('any')
url="https://github.com/decryptus/monit-docker"
license=('GPL3')
depends=(
'python'
'python-cryptography'
'python-bitmath'
'python-docker'
'python-mako'
'python-pyopenssl'
'python-yaml'
'python-six'
'python-sonicprobe'
)
makedepends=('python-pip')
source=("https://files.pythonhosted.org/packages/py3/m/$pkgname/${pkgname/-/_}-$pkgver-py3-none-any.whl")
md5sums=('ea9a1cadb68e6a14ed77af3ee0d14aba')
package() {
pip install --root="$pkgdir" --ignore-installed --no-deps "$srcdir/${pkgname/-/_}-$pkgver-py3-none-any.whl"
}
|