diff options
Diffstat (limited to 'misc/python-langgraph-checkpoint/Makefile')
-rw-r--r-- | misc/python-langgraph-checkpoint/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/misc/python-langgraph-checkpoint/Makefile b/misc/python-langgraph-checkpoint/Makefile new file mode 100644 index 000000000000..87d9eb3255b9 --- /dev/null +++ b/misc/python-langgraph-checkpoint/Makefile @@ -0,0 +1,25 @@ +PORTNAME= langgraph-checkpoint +DISTVERSION= 2.1.1 +CATEGORIES= misc python # machine-learning +MASTER_SITES= PYPI +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= ${PORTNAME:S/-/_/}-${PORTVERSION} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= LangGraph: Base interfaces for LangGraph checkpoint savers +WWW= https://github.com/langchain-ai/langgraph + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}hatchling>0:devel/py-hatchling@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}langchain-core>=0.2.38:misc/py-langchain-core@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}ormsgpack>=1.10.0:devel/py-ormsgpack@${PY_FLAVOR} + +USES= python +USE_PYTHON= pep517 autoplist + +NO_ARCH= yes + +.include <bsd.port.mk> |