Search Criteria
Package Details: python-audible 0.9.1-2
Package Actions
Git Clone URL: | https://aur.archlinux.org/python-audible.git (read-only, click to copy) |
---|---|
Package Base: | python-audible |
Description: | A(Sync) Interface for internal Audible API written in |
Upstream URL: | https://github.com/mkb79/audible |
Licenses: | AGPL3 |
Submitter: | mattski |
Maintainer: | mattski |
Last Packager: | mattski |
Votes: | 0 |
Popularity: | 0.000000 |
First Submitted: | 2022-10-25 07:14 (UTC) |
Last Updated: | 2024-05-04 15:51 (UTC) |
Dependencies (11)
- python (python37AUR, python311AUR, python310AUR)
- python-beautifulsoup4
- python-httpx (python-httpx-gitAUR)
- python-pbkdf2
- python-pillow (python-pillow-gitAUR)
- python-pyaes
- python-questionaryAUR
- python-rsa
- python-build (make)
- python-installer (python-installer-gitAUR) (make)
- python-wheel (make)
Latest Comments
mattski commented on 2024-05-04 15:56 (UTC)
@dreieck Thanks for the pointers - updated and seems to be working correctly now
dreieck commented on 2024-03-26 12:57 (UTC)
Build with
setup.py
does no longer work.Please, add to
makedepends
'python-build' 'python-installer' 'python-wheel'
, and then use inbuild()
:python -m build --wheel --no-isolation
and in
package()
:python -m installer --destdir="${pkgdir}" dist/*.whl
instead of the calls to
setup.py
.Regards and thanks for maintaining!
dreieck commented on 2023-04-26 10:44 (UTC)
To make this work with newer versions of
python-httpx
, the upper version restriction needs to be removed.A patch that does it:
remove-httpx-upper-version-restriction.patch
:And the following to be added to the
PKGBUILD
:Regards!
dreieck commented on 2023-04-26 10:18 (UTC)
Please remove
python-audible
from theprovides
andconflicts
arrays.$pkgname
should neither be inprovides
nor inconflicts
entry.Thanks for maintaining!