diff options
author | prspkt <prspkt@protonmail.com> | 2019-06-19 11:38:26 +0300 |
---|---|---|
committer | prspkt <prspkt@protonmail.com> | 2019-06-19 11:51:56 +0300 |
commit | 0c6b47193b5a4a025f6b34d111e78dba20adc8d0 (patch) | |
tree | adcdc3f13606520865c0d82bd2e019e4179bb358 /community/py3-pytest-mock | |
parent | 8faf6299e2a8ba608b761f542bde1192416b5965 (diff) | |
download | aports-0c6b47193b5a4a025f6b34d111e78dba20adc8d0.tar.bz2 aports-0c6b47193b5a4a025f6b34d111e78dba20adc8d0.tar.xz |
testing/pytest-mock: drop python2
* Modernize.
* Move to community.
Diffstat (limited to 'community/py3-pytest-mock')
-rw-r--r-- | community/py3-pytest-mock/APKBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/community/py3-pytest-mock/APKBUILD b/community/py3-pytest-mock/APKBUILD new file mode 100644 index 0000000000..4c0a949af1 --- /dev/null +++ b/community/py3-pytest-mock/APKBUILD @@ -0,0 +1,30 @@ +# Maintainer: Andy Postnikov <apostnikov@gmail.com> +pkgname=py3-pytest-mock +_pkgname=pytest-mock +pkgver=1.10.0 +pkgrel=1 +pkgdesc="Thin-wrapper around the mock package for easier use with py.test" +url="https://github.com/pytest-dev/pytest-mock" +arch="noarch" +license="MIT" +depends="py3-pytest" +makedepends="py3-setuptools" +source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" +builddir="$srcdir/$_pkgname-$pkgver" + +replaces="pytest-mock" # Backwards compatibility +provides="pytest-mock=$pkgver-r$pkgrel" # Backwards compatibility + +build() { + python3 setup.py build +} + +check() { + python3 setup.py test +} + +package() { + python3 setup.py install --prefix=/usr --root="$pkgdir" +} + +sha512sums="b8afba13da3e598b6493459298e395c0ecc06538733916659191bd5c5c22f40b0e296853ad940c16a6d492fcf46b2daf490ee589661d391e2c7cd1deb84da756 pytest-mock-1.10.0.tar.gz" |