blob: 28721a932d12c6e3ce33575d0f4c521d54a47a34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# $NetBSD: Makefile,v 1.13 2022/07/12 07:28:27 adam Exp $
DISTNAME= rlp-3.0.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=r/rlp/}
MAINTAINER= khorben@defora.org
HOMEPAGE= https://github.com/ethereum/pyrlp
COMMENT= Package for Recursive Length Prefix encoding and decoding
LICENSE= mit
DEPENDS+= ${PYPKGPREFIX}-eth-utils>=2.0.0:../../finance/py-eth-utils
TEST_DEPENDS+= ${PYPKGPREFIX}-hypothesis>=5.19.0:../../devel/py-hypothesis
TEST_DEPENDS+= ${PYPKGPREFIX}-test>=5.4.3:../../devel/py-test
TEST_DEPENDS+= ${PYPKGPREFIX}-tox>=2.9.1:../../devel/py-tox
USE_LANGUAGES= # none
PYTHON_VERSIONS_INCOMPATIBLE= 27
do-test:
cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"
|