summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7fe448cd47e878a0ebf1305fe9137058daaef91c (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
# Contributor: Lex Black <autumn-wind@web.de>
# Contributor: Dominik StaƄczak <stanczakdominik at gmail dot com>
# autogenerated with pip2pkgbuild

pkgbase=python-pytest-watch
pkgname=python-pytest-watch
_module=pytest-watch
pkgver=4.2.0
pkgrel=1
pkgdesc="Local continuous test runner with pytest and watchdog."
url="https://github.com/joeyespo/pytest-watch"
makedepends=('python-setuptools')
depends=('python' 'python-watchdog') 
license=('MIT')
arch=('any')
source=("https://files.pythonhosted.org/packages/source/${_module::1}/$_module/$_module-$pkgver.tar.gz")
md5sums=('9f854cdf60212c5d1a210c8991619ba4')


build() {
    cd "${_module}-${pkgver}"
    python setup.py build
}

package() {
    cd "${_module}-${pkgver}"
    python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
}