freebsd-ports/devel/py-cloudpickle/Makefile
Kubilay Kocak 8a58417653 [NEW] devel/py-cloudpickle: Extended pickling support for Python objects
cloudpickle makes it possible to serialize Python constructs not
supported by the default pickle module from the Python standard library.

cloudpickle is especially useful for cluster computing where Python
expressions are shipped over the network to execute on remote hosts,
possibly close to the data.

Among other things, cloudpickle supports pickling for lambda
expressions, functions and classes defined interactively in the
`__main__` module.

WWW: https://github.com/cloudpipe/cloudpickle
2016-02-21 14:55:24 +00:00

24 lines
482 B
Makefile

# Created by: Kubilay Kocak <koobs@FreeBSD.org>
# $FreeBSD$
PORTNAME= cloudpickle
PORTVERSION= 0.2.1
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= koobs@FreeBSD.org
COMMENT= Extended pickling support for Python objects
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= python
USE_PYTHON= autoplist distutils
NO_ARCH= yes
do-test:
@cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test
.include <bsd.port.mk>