blob: ba66debf9c12c416e50092872a72ff099a7c2ac1 (
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
|
# Maintainer: GI_Jack <GI_Jack@hackermail.com>
pkgname=python-lsassy
_pypiname=lsassy
pkgver=3.1.12
pkgrel=1
pkgdesc="Python library to remotely extract credentials on a set of hosts"
url="https://github.com/Hackndo/lsassy"
arch=('any')
license=('MIT')
depends=('python' 'impacket' 'python-netaddr' 'python-pypykatz')
makedepends=('python-build' 'python-installer' 'python-wheel' 'python-poetry')
source=(${_pypiname}-${pkgver}.tar.gz::"https://github.com/Hackndo/lsassy/archive/v${pkgver}.tar.gz")
sha256sums=('d0c23d92a3bc2834ea26fafdcea7bfe5161ee4f2aac922c2055a42be052a56b2')
build() {
cd "${_pypiname}-${pkgver}"
python -m build --wheel --no-isolation
}
package() {
cd "${_pypiname}-${pkgver}"
python -m installer --destdir="${pkgdir}" dist/*.whl
}
|