From cd30771a1467a15496587a63f100d60eca62ce2b Mon Sep 17 00:00:00 2001 From: maxice8 Date: Tue, 7 Nov 2017 17:24:57 -0200 Subject: [PATCH] New package: python-hypothesis-3.38.0. Closes #9136. --- srcpkgs/python-hypothesis/template | 47 ++++++++++++++++++++++++++++++ srcpkgs/python3-hypothesis | 1 + 2 files changed, 48 insertions(+) create mode 100644 srcpkgs/python-hypothesis/template create mode 120000 srcpkgs/python3-hypothesis diff --git a/srcpkgs/python-hypothesis/template b/srcpkgs/python-hypothesis/template new file mode 100644 index 00000000000..c7b0d0b383d --- /dev/null +++ b/srcpkgs/python-hypothesis/template @@ -0,0 +1,47 @@ +# Template file for 'python-hypothesis' +pkgname=python-hypothesis +version=3.38.0 +revision=1 +wrksrc="${pkgname/python-//}-python-${version}" +build_style=python-module +pycompile_module="hypothesis" +hostmakedepends="python-setuptools python3-setuptools" +checkdepends="python3-pytest python-pytest python3-attrs python-attrs python3-coverage +python-coverage python3-pytz python-enum34 python3-flaky" +depends="python-attrs python-coverage python-enum34 python-pytz python-pandas" +short_desc="A Python2 library for property based testing" +maintainer="maxice8 " +license="MPL-2" +homepage="http://hypothesis.works/" +distfiles="https://github.com/HypothesisWorks/hypothesis-python/archive/${version}.tar.gz" +checksum=578282ada992e3669743f01dcffeb39aceeaa44e63e96b9acde6454196c51997 +noarch=yes + +do_check() { + # pytest doesn't recognize -n switch + sed -i 's/ -n 2$//' tox.ini + + # In python3 mock is actually unittest.mock + sed -i 's/from mock/from unittest.mock/' tests/cover/test_regressions.py + sed -i 's/from mock/from unittest.mock/' tests/cover/test_reflection.py + + # Add variables that will be used by python to find the local + # hypothesis build + PY3PATH="${PWD}/build-3.6/lib" + PY2PATH="${PWD}/build-2.7/lib" + + PYTHONPATH="${PY3PATH}" python3 -m pytest tests/cover + PYTHONPATH="${PY3PATH}" python3 -m pytest tests/py3 + PYTHONPATH="${PY2PATH}" python2 -m pytest tests/py2 + +} + +python3-hypothesis_package() { + noarch=yes + pycompile_module="hypothesis" + short_desc="${short_desc/Python2/Python3}" + depends="python3-attrs python3-coverage python3-pytz python3-pandas" + pkg_install() { + vmove usr/lib/python3* + } +} diff --git a/srcpkgs/python3-hypothesis b/srcpkgs/python3-hypothesis new file mode 120000 index 00000000000..e2087b78468 --- /dev/null +++ b/srcpkgs/python3-hypothesis @@ -0,0 +1 @@ +python-hypothesis \ No newline at end of file