summaryrefslogtreecommitdiff
path: root/devel/py-essentials
diff options
context:
space:
mode:
Diffstat (limited to 'devel/py-essentials')
-rw-r--r--devel/py-essentials/Makefile25
-rw-r--r--devel/py-essentials/distinfo3
-rw-r--r--devel/py-essentials/pkg-descr15
3 files changed, 43 insertions, 0 deletions
diff --git a/devel/py-essentials/Makefile b/devel/py-essentials/Makefile
new file mode 100644
index 000000000000..140b76302ffd
--- /dev/null
+++ b/devel/py-essentials/Makefile
@@ -0,0 +1,25 @@
+PORTNAME= essentials
+DISTVERSION= 1.1.8
+CATEGORIES= devel python
+MASTER_SITES= PYPI
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= yuri@FreeBSD.org
+COMMENT= General purpose classes and functions
+WWW= https://github.com/Neoteroi/essentials
+
+LICENSE= MIT
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}hatchling>0:devel/py-hatchling@${PY_FLAVOR}
+TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-asyncio>0:devel/py-pytest-asyncio@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}pydantic>0:devel/py-pydantic@${PY_FLAVOR}
+
+USES= python
+USE_PYTHON= pep517 autoplist pytest
+
+TEST_ENV= ${MAKE_ENV} PYTHONPATH=${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}
+
+# tests as of 1.1.8: 157 passed in 3.25s
+
+.include <bsd.port.mk>
diff --git a/devel/py-essentials/distinfo b/devel/py-essentials/distinfo
new file mode 100644
index 000000000000..5be79bcad4be
--- /dev/null
+++ b/devel/py-essentials/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1759627635
+SHA256 (essentials-1.1.8.tar.gz) = e042e0b33d385cfc26e1f0cc189fce5570d0959a1983438a557e7963a87b5638
+SIZE (essentials-1.1.8.tar.gz) = 25098
diff --git a/devel/py-essentials/pkg-descr b/devel/py-essentials/pkg-descr
new file mode 100644
index 000000000000..2929dd02b4ae
--- /dev/null
+++ b/devel/py-essentials/pkg-descr
@@ -0,0 +1,15 @@
+Essentials is a collection of general-purpose classes and functions for
+Python development. It provides commonly used utilities and helpers that
+can be reused across different projects.
+
+Key features:
+* Common utility classes and functions
+* String manipulation helpers
+* Date and time utilities
+* Collection manipulation tools
+* Type checking and validation helpers
+* Configuration management utilities
+* File system operation helpers
+
+The library is designed to reduce code duplication and provide a
+consistent set of tools for everyday Python programming tasks.