summaryrefslogtreecommitdiff
path: root/devel/py-dacite
diff options
context:
space:
mode:
Diffstat (limited to 'devel/py-dacite')
-rw-r--r--devel/py-dacite/Makefile22
-rw-r--r--devel/py-dacite/distinfo3
-rw-r--r--devel/py-dacite/pkg-descr3
3 files changed, 28 insertions, 0 deletions
diff --git a/devel/py-dacite/Makefile b/devel/py-dacite/Makefile
new file mode 100644
index 000000000000..92872c4be503
--- /dev/null
+++ b/devel/py-dacite/Makefile
@@ -0,0 +1,22 @@
+PORTNAME= dacite
+DISTVERSIONPREFIX= v
+DISTVERSION= 1.9.2
+CATEGORIES= devel python
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= yuri@FreeBSD.org
+COMMENT= Simple creation of data classes from dictionaries
+WWW= https://github.com/konradhalas/dacite
+
+LICENSE= MIT
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+USES= python
+USE_PYTHON= distutils autoplist pytest
+
+USE_GITHUB= yes
+GH_ACCOUNT= konradhalas
+
+# tests as of 1.9.2: 199 passed, 0 failed (12.11s)
+
+.include <bsd.port.mk>
diff --git a/devel/py-dacite/distinfo b/devel/py-dacite/distinfo
new file mode 100644
index 000000000000..96e171a0571d
--- /dev/null
+++ b/devel/py-dacite/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1759797847
+SHA256 (konradhalas-dacite-v1.9.2_GH0.tar.gz) = cec83bf402dc6ac0e5a2030500ef7296ad4d5c77e756475252b99e89a4d5ebfa
+SIZE (konradhalas-dacite-v1.9.2_GH0.tar.gz) = 29435
diff --git a/devel/py-dacite/pkg-descr b/devel/py-dacite/pkg-descr
new file mode 100644
index 000000000000..9f354b89968c
--- /dev/null
+++ b/devel/py-dacite/pkg-descr
@@ -0,0 +1,3 @@
+The dacite library provides a simple API to create Python data classes from
+dictionaries. It also includes support for more advanced features like nested
+data classes and type checking.