diff options
Diffstat (limited to 'repo/python-flaky')
-rw-r--r-- | repo/python-flaky/python-flaky.xibuild | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/repo/python-flaky/python-flaky.xibuild b/repo/python-flaky/python-flaky.xibuild new file mode 100644 index 0000000..ae5c89c --- /dev/null +++ b/repo/python-flaky/python-flaky.xibuild @@ -0,0 +1,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 +} |