1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-11 02:50:24 +00:00
freebsd-ports/databases/py-fakeredis/Makefile
Rene Ladan f6da41594d fakeredis is a pure python implementation of the redis-py python client that
simulates talking to a redis server. This was created for a single purpose:
to write unittests. Setting up redis is not hard, but many times you want to
write unittests that do not talk to an external server (such as redis). This
module now allows tests to simply use this module as a reasonable substitute
for redis.

WWW: https://github.com/jamesls/fakeredis
2017-01-07 12:27:45 +00:00

22 lines
431 B
Makefile

# $FreeBSD$
PORTNAME= fakeredis
PORTVERSION= 0.8.2
CATEGORIES= databases
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= rene@FreeBSD.org
COMMENT= Fake version of databases/py-redis for unit testing
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/COPYING
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}redis>=0:databases/py-redis
USES= python
USE_PYTHON= distutils autoplist
NO_ARCH= yes
.include <bsd.port.mk>