Closed D3vil0p3r closed 2 weeks ago
In PKGBUILD-python-PEP517 the dependencies are not installed automatically by pip install command in package() unlike PKGBUILD Python Standalone, right?
pip install
package()
Should they be specified in depends?
depends
Yes, with PEP517 PKGBUILD you need to use system dependencies, that's why pip install uses --no-deps because we won't pull deps from pypi.
--no-deps
In PKGBUILD-python-PEP517 the dependencies are not installed automatically by
pip install
command inpackage()
unlike PKGBUILD Python Standalone, right?Should they be specified in
depends
?