diff options
Diffstat (limited to 'repo/python-pytest/python-pytest.xibuild')
-rw-r--r-- | repo/python-pytest/python-pytest.xibuild | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/repo/python-pytest/python-pytest.xibuild b/repo/python-pytest/python-pytest.xibuild new file mode 100644 index 0000000..ee9b399 --- /dev/null +++ b/repo/python-pytest/python-pytest.xibuild @@ -0,0 +1,16 @@ +#!/bin/sh + +MAKEDEPS="python" +DEPS="python-iniconfig python-packaging python-tomli python-atomicwrites python-colorama python-argcomplete python-hypothesis python-mock python-nose python-pygments python-xmlschema" + +PKG_VER=7.1.2 +SOURCE=https://files.pythonhosted.org/packages/source/p/pytest/pytest-$PKG_VER.tar.gz +DESC="pytest: simple powerful testing with Python" + +build() { + python setup.py build +} + +package () { + python setup.py install --root="$PKG_DEST" --optimize=1 +} |