Search Criteria
Package Details: python-swagger-ui-py 25.7.1-2
Package Actions
| Git Clone URL: | https://aur.archlinux.org/python-swagger-ui-py.git (read-only, click to copy) |
|---|---|
| Package Base: | python-swagger-ui-py |
| Description: | Swagger UI for Python web framework, such Tornado, Flask and Sanic |
| Upstream URL: | https://pwzer.github.io/swagger-ui-py/ |
| Licenses: | Apache2 |
| Submitter: | AlphaJack |
| Maintainer: | AlphaJack (micwoj92) |
| Last Packager: | AlphaJack |
| Votes: | 1 |
| Popularity: | 0.52 |
| First Submitted: | 2023-06-16 22:51 (UTC) |
| Last Updated: | 2026-02-03 23:17 (UTC) |
Dependencies (8)
- python
- python-jinja
- python-packaging
- python-yaml (python-yaml-gitAUR)
- python-build (make)
- python-installer (make)
- python-setuptools (make)
- python-wheel (make)
Required by (3)
- mimic
- python-wyoming (check)
- python-wyoming (optional)
Latest Comments
SpotlightKid commented on 2024-12-18 11:36 (UTC) (edited on 2024-12-18 11:38 (UTC) by SpotlightKid)
This package installs some files under
/usr/lib/python3.12/site-packages/test. These will easily conflict with other packages, which - also wrongly - install files there, particularly the__init__.pyfile there.This is due to an upstream issue, because the package's
setup.pyusespackages=find_packages()without excluding thetestpackage. But you can easily remove the thetestdirectory in thepackage()function in your PKGBUILD after installation:https://github.com/PWZER/swagger-ui-py/blob/21c62701c12d7a5b47f340c1631500cdaa5ef00f/setup.py#L17