4907bc25c8
v0.17.0 Feature release * Connection objects now raise ValueError when closed and a command is executed * Fix documented examples in readme
23 lines
614 B
Makefile
23 lines
614 B
Makefile
# $NetBSD: Makefile,v 1.8 2021/02/22 10:28:58 adam Exp $
|
|
|
|
DISTNAME= aiosqlite-0.17.0
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= databases python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=a/aiosqlite/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/jreese/aiosqlite
|
|
COMMENT= Async bridge to the standard sqlite3 module
|
|
LICENSE= mit
|
|
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-aiounittest-[0-9]*:../../devel/py-aiounittest
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 27
|
|
|
|
do-test:
|
|
cd ${WRKSRC} && ${PYTHONBIN} -m aiosqlite.tests
|
|
|
|
.include "../../lang/python/distutils.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|