Skip to content
Snippets Groups Projects
Unverified Commit 9eb65498 authored by Nicola Vitale's avatar Nicola Vitale
Browse files

databases/py-aiosql: Add new port

SQL is code. Write it, version control it, comment it, and run it using files.
Writing your SQL code in Python programs as strings doesn't allow you to easily
reuse them in SQL GUIs or CLI tools like psql. With aiosql you can organize
your SQL statements in .sql files, load them into your python application as
methods to call without losing the ability to use them as you would any other
SQL file.

https://pypi.org/project/aiosql/
parent 1a330527
No related branches found
No related tags found
No related merge requests found
......@@ -749,6 +749,7 @@
SUBDIR += py-aiomysql
SUBDIR += py-aiopg
SUBDIR += py-aioredis
SUBDIR += py-aiosql
SUBDIR += py-aiosqlite
SUBDIR += py-alembic
SUBDIR += py-apache-arrow
......
PORTNAME= aiosql
DISTVERSION= 10.4
CATEGORIES= databases python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= nivit@FreeBSD.org
COMMENT= Simple SQL in Python
WWW= https://pypi.org/project/aiosql/
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools-scm>=6.4:devel/py-setuptools-scm@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}setuptools>=42:devel/py-setuptools@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}wheel>=0.44.0:devel/py-wheel@${PY_FLAVOR}
USES= python
USE_PYTHON= autoplist pep517
.include <bsd.port.mk>
TIMESTAMP = 1723123592
SHA256 (aiosql-10.4.tar.gz) = e75e9e95587de0332f232c160752aaaf1e937047d05a65760d878e0fabae38aa
SIZE (aiosql-10.4.tar.gz) = 65703
SQL is code. Write it, version control it, comment it, and run it using files.
Writing your SQL code in Python programs as strings doesn't allow you to easily
reuse them in SQL GUIs or CLI tools like psql. With aiosql you can organize
your SQL statements in .sql files, load them into your python application as
methods to call without losing the ability to use them as you would any other
SQL file.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment