Files
buildroot/support/testing/tests/package/test_python_pyproj.py
Daniel Crowe 7c65b4484e package/python-pyproj: new package
Provides cartographic projections in Python
https://pyproj4.github.io/pyproj/stable/

Signed-off-by: Daniel Crowe <daniel.crowe@maxmine.com.au>
[Julien:
 - reword commit title
 - add test files in DEVELOPERS entries
]
Signed-off-by: Julien Olivain <ju.o@free.fr>
2025-05-09 19:01:27 +02:00

12 lines
331 B
Python

from tests.package.test_python import TestPythonPackageBase
class TestPythonPy3Pyproj(TestPythonPackageBase):
__test__ = True
config = TestPythonPackageBase.config + \
"""
BR2_PACKAGE_PYTHON3=y
BR2_PACKAGE_PYTHON_PYPROJ=y
"""
sample_scripts = ["tests/package/sample_python_pyproj.py"]