blob: 79eb4138eccf9ee15f4fefa6c55408a2dc367fdf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
MAKEDEPS="python"
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
}
|