2201fe594d
SnowDDL is a declarative-style tool for object management automation in Snowflake. It is not intended to replace other tools entirely, but to provide an alternative approach focused on practical data engineering challenges. You may find SnowDDL useful if: - complexity of object schema grows exponentially, and it becomes hard to manage - your organization maintains multiple Snowflake accounts (dev, stage, prod) - your organization has multiple developers sharing the same Snowflake account and suffering from conflicts - it is necessary to generate some part of configuration dynamically using Python PR: 274586 Author: Pat Maddox <pat@patmaddox.com>
26 lines
801 B
Makefile
26 lines
801 B
Makefile
PORTNAME= snowddl
|
|
PORTVERSION= 0.20.0
|
|
CATEGORIES= databases python
|
|
MASTER_SITES= PYPI
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= pat@patmaddox.com
|
|
COMMENT= Object management automation tool for Snowflake
|
|
WWW= https://docs.snowddl.com/
|
|
|
|
LICENSE= APACHE20
|
|
|
|
BUILD_DEPENDS= wheel-${PYTHON_VER}:devel/py-wheel@${PY_FLAVOR} \
|
|
${PY_DEPENDS}
|
|
|
|
RUN_DEPENDS= ${PY_DEPENDS}
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist concurrent pep517
|
|
|
|
PY_DEPENDS= ${PYTHON_PKGNAMEPREFIX}jsonschema>=4.18,<5:devel/py-jsonschema@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}pydantic2>=2.4,<3:devel/py-pydantic2@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}yaml>=6.0,<7:devel/py-yaml@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}snowflake-connector-python>=3.0,<4:databases/py-snowflake-connector-python@${PY_FLAVOR}
|
|
|
|
.include <bsd.port.mk>
|