29 lines
818 B
Plaintext
29 lines
818 B
Plaintext
|
# Maintainer: Disassembler <disassembler@dasm.cz>
|
||
|
pkgname=py3-secure-cookie
|
||
|
_pkgname=secure-cookie
|
||
|
pkgver=0.1.0
|
||
|
pkgrel=0
|
||
|
pkgdesc="Secure cookie and session interface for WSGI applications"
|
||
|
url="https://secure-cookie.readthedocs.io/"
|
||
|
arch="noarch"
|
||
|
license="MIT"
|
||
|
depends="python3"
|
||
|
makedepends="py3-setuptools"
|
||
|
checkdepends="py3-pytest py3-werkzeug"
|
||
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
||
|
builddir="$srcdir/$_pkgname-$pkgver"
|
||
|
|
||
|
build() {
|
||
|
python3 setup.py build
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
||
|
}
|
||
|
|
||
|
check() {
|
||
|
PYTHONPATH=$PWD/build/lib pytest
|
||
|
}
|
||
|
|
||
|
sha512sums="2e57dba6f73ceb03eda33c804dbe2277c9fe700dd1be219bb3d8d43a5c9105c2323fb6b28d74d3a1dfc8fbbd938b91ab54d3e1bac1dc74490335b1d27e43b55a secure-cookie-0.1.0.tar.gz"
|