Search Criteria
Package Details: python-arxiv 2.1.0-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/python-arxiv.git (read-only, click to copy) |
---|---|
Package Base: | python-arxiv |
Description: | Python wrapper for the arXiv API: http://arxiv.org/help/api/ |
Upstream URL: | https://github.com/lukasschwab/arxiv.py |
Licenses: | MIT |
Submitter: | yodaembedding |
Maintainer: | yodaembedding |
Last Packager: | yodaembedding |
Votes: | 1 |
Popularity: | 0.000000 |
First Submitted: | 2021-02-28 06:35 (UTC) |
Last Updated: | 2023-12-27 01:45 (UTC) |
Dependencies (4)
- python (python37AUR, python311AUR, python310AUR)
- python-feedparser
- python-requests
- python-setuptools (make)
Latest Comments
gesh commented on 2024-03-25 13:05 (UTC)
Also, please update to PEP517 installs -- directly invoking
setup.py
is deprecated nowadays.gesh commented on 2024-02-13 20:59 (UTC) (edited on 2024-02-14 15:42 (UTC) by gesh)
This doesn't need to be a split package --
$pkgbase
can be dropped, andpkgname
made into a string instead. Similarly,depends+=()
can be removed frompackage()
. Also, https://wiki.archlinux.org/title/Python_packaging_guidelines suggests using_name
instead of_module
. Besides, is there a reason you're adding--skip-build
? Finally, you could addcheck() { cd "${srcdir}/${_module}-${pkgver}"; python setup.py test; }
andcheckdepends=(python-pytest python-ruff python-pdoc==13.1.0 python-pip-audit)