blob: d796567024e52974ada47e677bbf12cef62ed4b3 (
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
29
30
31
32
33
|
# Maintainer: Letu Ren <fantasquex at gmail dot com>
# Contributor:: Ocelot <1112345@airmail.cc>
pkgname=python-censys
_name=censys-python
pkgver=2.2.12
pkgrel=1
pkgdesc="An easy-to-use and lightweight API wrapper for Censys APIs."
arch=('any')
url="https://github.com/censys/censys-python"
license=('APACHE')
depends=(
'python'
'python-requests'
'python-urllib3'
'python-backoff'
'python-rich'
'python-argcomplete'
)
makedepends=('python-build' 'python-installer' 'python-poetry-core')
source=("https://github.com/censys/censys-python/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=('d77e735e78dc453d6153be50414b8fe245e046afb2913a88adee199820737e01')
build() {
cd "${_name}-${pkgver}"
python -m build --wheel --no-isolation
}
package() {
cd "${_name}-${pkgver}"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|