mirror of
https://git.freebsd.org/ports.git
synced 2025-05-22 11:48:35 -04:00
Relay Library for GraphQL Python is a library to allow the easy creation of Relay-compliant servers using the GraphQL Python reference implementation of a GraphQL server. Note: The code is a exact port of the original graphql-relay js implementation from Facebook WWW: https://github.com/graphql-python/graphql-relay-py
25 lines
689 B
Makefile
25 lines
689 B
Makefile
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= graphql-relay
|
|
PORTVERSION= 0.4.5
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Relay implementation for Python
|
|
|
|
LICENSE= MIT
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}graphql-core>=0.5.0:devel/py-graphql-core@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}promise>=0.4.0:devel/py-promise@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}six>=1.10.0:devel/py-six@${PY_FLAVOR}
|
|
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=2.7.2:devel/py-pytest@${PY_FLAVOR}
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
|
|
NO_ARCH= yes
|
|
|
|
.include <bsd.port.mk>
|