mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
5f06948cca
- Update RUN_DEPENDS: use newer py-sqlalchemy* - Convert to USE_PYTHON=pep517 Changes: https://github.com/marshmallow-code/marshmallow-sqlalchemy/blob/dev/CHANGELOG.rst https://marshmallow-sqlalchemy.readthedocs.io/en/latest/changelog.html
28 lines
995 B
Makefile
28 lines
995 B
Makefile
PORTNAME= marshmallow-sqlalchemy
|
|
PORTVERSION= 1.0.0
|
|
CATEGORIES= databases python
|
|
MASTER_SITES= PYPI
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= marshmallow_sqlalchemy-${PORTVERSION}
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= SQLAlchemy integration with the marshmallow serialization library
|
|
WWW= https://marshmallow-sqlalchemy.readthedocs.io/en/latest/ \
|
|
https://github.com/marshmallow-code/marshmallow-sqlalchemy
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}flit-core>=0<4:devel/py-flit-core@${PY_FLAVOR}
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}marshmallow>=3.10.0:devel/py-marshmallow@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}sqlalchemy20>=1.4.40<3.0:databases/py-sqlalchemy20@${PY_FLAVOR}
|
|
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-lazy-fixture>=0.6.2:devel/py-pytest-lazy-fixture@${PY_FLAVOR} \
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist concurrent pep517 pytest
|
|
|
|
NO_ARCH= yes
|
|
TEST_ENV= PYTHONPATH=${STAGEDIR}${PYTHON_SITELIBDIR}
|
|
|
|
.include <bsd.port.mk>
|