summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 597fb1844b82f124bd68b867fac1a370aaeafaaf (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
# Maintainer: Dominik StaƄczak <stanczakdominik at gmail dot com>
# autogenerated with pip2pkgbuild
pkgbase=('python-pytest-watch')
pkgname=('python-pytest-watch')
_module="pytest-watch"
pkgver=4.1.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://pypi.python.org/packages/e9/88/69b94fe4cb3d3b106b184056bc80ade6b0a9062e5a9a1cb65aec58831281/pytest-watch-${pkgver}.zip")
md5sums=('4048e6e4a420ee54ed1318c71153e593')
build() {
    cd "${srcdir}/${_module}-${pkgver}"
    python setup.py build
}

package_python-pytest-watch() {
    depends+=()
    cd "${srcdir}/${_module}-${pkgver}"
    python setup.py install --root="${pkgdir}" --optimize=1 
}