blob: ae5c89c9601387051a41beeba9437cfce1787f78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
MAKEDEPS="python"
DEPS="%deps%"
PKG_VER=3.7.0
SOURCE=https://files.pythonhosted.org/packages/source/f/flaky/flaky-$PKG_VER.tar.gz
DESC="Plugin for nose or pytest that automatically reruns flaky tests."
build() {
python setup.py build
}
package () {
python setup.py install --root="$PKG_DEST" --optimize=1
}
|