blob: bd2b2384aa68e3338b644a32cb84639d6a169270 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Maintainer: jacopotediosi <jacopotediosi at gmail dot com>
pkgname=flask-unsign
pkgver=1.2.0
pkgrel=1
pkgdesc="Command line tool to fetch, decode, brute-force and craft session cookies of a Flask application by guessing secret keys"
arch=('any')
url="https://github.com/Paradoxis/Flask-Unsign"
license=('MIT')
depends=('python' 'python-flask' 'python-requests' 'python-itsdangerous' 'python-markupsafe' 'python-werkzeug')
makedepends=('python-build' 'python-installer' 'python-wheel')
# Hashes updated by updpkgsums
sha256sums=('ff685e5a9e54958d401ddee8d2899c43ad0643df4cf41af844b00a0650ae7b6e')
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz")
build() {
cd "$srcdir/$pkgname-$pkgver"
python -m build --wheel --no-isolation
}
package() {
cd "$srcdir/$pkgname-$pkgver"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|