diff options
Diffstat (limited to 'user/py3-hypothesis/APKBUILD')
-rw-r--r-- | user/py3-hypothesis/APKBUILD | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/user/py3-hypothesis/APKBUILD b/user/py3-hypothesis/APKBUILD index 808a84296..a165c08c5 100644 --- a/user/py3-hypothesis/APKBUILD +++ b/user/py3-hypothesis/APKBUILD @@ -2,33 +2,32 @@ # Maintainer: Brandon Bergren <git@bdragon.rtk0.net> pkgname=py3-hypothesis _pkgname=hypothesis -pkgver=4.14.3 +_p="${_pkgname#?}" +_p="${_pkgname%"$_p"}" +pkgver=4.56.3 pkgrel=0 pkgdesc="A library for property based testing" url="https://pypi.python.org/pypi/hypothesis" arch="noarch" options="!check" # Tests are missing from release packages due to possible packaging bug? license="MPL-2.0" -depends="python3" -makedepends="python3-dev" +depends="python3 py3-sortedcontainers" checkdepends="py3-pytest py3-attrs" -source="$pkgname-$pkgver.tar.gz::https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" +makedepends="python3-dev" +source="$pkgname-$pkgver.tar.gz::https://files.pythonhosted.org/packages/source/$_p/$_pkgname/$_pkgname-$pkgver.tar.gz" builddir="$srcdir/$_pkgname-$pkgver" build() { - cd "$builddir" python3 setup.py build } check() { - cd "$builddir" python3 setup.py test } package() { - cd "$builddir" python3 setup.py install --prefix=/usr --root="$pkgdir" } -sha512sums="6cf0713a416c51286e4c707c6b32705b2dd53ff1a5c88ceab0cdd970e8932078c9e13436ac4aa66f94a5badf0a2f93a20e8221f77cf4fb0c8b42a707b52fb0f2 py3-hypothesis-4.14.3.tar.gz" +sha512sums="221515d945669c34b676a9f57ab783e30d998b877b6e5bba27fec45cd95f5ed21e60cb4b019687f884b87c0bcad065f881fb0ca2a8d00bb216c43290bbd7d157 py3-hypothesis-4.56.3.tar.gz" |