aboutsummaryrefslogtreecommitdiff
path: root/devel/py-asyncstdlib
diff options
context:
space:
mode:
Diffstat (limited to 'devel/py-asyncstdlib')
-rw-r--r--devel/py-asyncstdlib/Makefile22
-rw-r--r--devel/py-asyncstdlib/distinfo3
-rw-r--r--devel/py-asyncstdlib/pkg-descr4
3 files changed, 29 insertions, 0 deletions
diff --git a/devel/py-asyncstdlib/Makefile b/devel/py-asyncstdlib/Makefile
new file mode 100644
index 000000000000..3c29d16ffed7
--- /dev/null
+++ b/devel/py-asyncstdlib/Makefile
@@ -0,0 +1,22 @@
+PORTNAME= asyncstdlib
+PORTVERSION= 3.14.0
+CATEGORIES= devel python
+MASTER_SITES= PYPI
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= olivier@FreeBSD.org
+COMMENT= Async variants of the Python standard library
+WWW= https://asyncstdlib.readthedocs.io/ \
+ https://github.com/maxfischer2781/asyncstdlib
+
+LICENSE= MIT
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}flit-core>0:devel/py-flit-core@${PY_FLAVOR}
+
+USES= python
+USE_PYTHON= autoplist concurrent pep517
+
+NO_ARCH= yes
+
+.include <bsd.port.mk>
diff --git a/devel/py-asyncstdlib/distinfo b/devel/py-asyncstdlib/distinfo
new file mode 100644
index 000000000000..32b58a3f8c16
--- /dev/null
+++ b/devel/py-asyncstdlib/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1777968796
+SHA256 (asyncstdlib-3.14.0.tar.gz) = f99396992a3bba7495d8cf6c832bfe8c8727f61213233d3569a5a9cbd1c04385
+SIZE (asyncstdlib-3.14.0.tar.gz) = 51074
diff --git a/devel/py-asyncstdlib/pkg-descr b/devel/py-asyncstdlib/pkg-descr
new file mode 100644
index 000000000000..acf169db659b
--- /dev/null
+++ b/devel/py-asyncstdlib/pkg-descr
@@ -0,0 +1,4 @@
+asyncstdlib provides async variants of features from the Python standard
+library, such as itertools, functools, contextlib, builtins (any/all/min/
+max/sum/...) and more. All tools are designed to work seamlessly with
+both async and sync iterables, callables and context managers.