blob: fc56df8408777b11e36c6356bb6f3caef5956a5d (
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
|
#
# Generated by pypi2aur from pypi package pushover-complete
# Date 2025-04-25 19:50:04
#
pkgname=python-pushover-complete
_origpkgname=pushover_complete
pkgver=2.0.0
pkgrel=1
pkgdesc="A Python package for interacting with *all* aspects of the Pushover API."
arch=("x86_64")
url='https://pypi.org/project/pushover-complete/'
license=("None")
depends=()
makedepends=(
"python-build"
"python-installer"
"python-wheel"
"python-setuptools"
"python-hatchling"
)
source=("https://files.pythonhosted.org/packages/db/ae/2ed5c277e22316d8a31e2f67c6c9fd5021189ed3754e144aad53d874d687/pushover_complete-2.0.0.tar.gz")
sha256sums=("24fc7d84d73426840e7678fee80d36f40df0114cb30352ba4f99ab3842ed21a7")
package() {
cd "${_origpkgname}-${pkgver}" || exit
python -m build --wheel --no-isolation
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 LICENSE.rst "$pkgdir/usr/share/licenses/$pkgname/LICENSE.rst"
}
# vim:set ts=2 sw=2 et:
|