32 lines
679 B
Makefile
32 lines
679 B
Makefile
COMMENT= Python utility / library to sort Python imports
|
|
|
|
MODPY_EGG_VERSION= 5.12.0
|
|
DISTNAME= isort-${MODPY_EGG_VERSION}
|
|
PKGNAME= py-isort-${MODPY_EGG_VERSION}
|
|
|
|
CATEGORIES= devel
|
|
|
|
HOMEPAGE= https://github.com/timothycrosley/isort
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
MODULES= lang/python
|
|
|
|
MODPY_PI= Yes
|
|
MODPY_PYBUILD= poetry-core
|
|
|
|
MODPY_PYTEST_ARGS= \
|
|
--ignore tests/integration/test_hypothesmith.py \
|
|
--ignore tests/unit/test_pylama_isort.py
|
|
|
|
FLAVORS= python3
|
|
FLAVOR= python3
|
|
|
|
TEST_DEPENDS= ${BUILD_PKGPATH} \
|
|
devel/py-test-mock${MODPY_FLAVOR} \
|
|
devel/py-hypothesis${MODPY_FLAVOR} \
|
|
textproc/py-black${MODPY_FLAVOR} \
|
|
textproc/py-toml${MODPY_FLAVOR}
|
|
|
|
.include <bsd.port.mk>
|