98356e73d1
This module converts a Python dictionary or other native data type into a valid XML string. Supported item are int, float, long, decimal.Decimal, bool, str, unicode, datetime, None and other number-like objects. Supported collection are list, set, tuple and dict, as well as iterable and dict-like objects. Items with a datetime type are converted to ISO format strings. Items with a None type become empty XML elements.
18 lines
462 B
Makefile
18 lines
462 B
Makefile
# $NetBSD: Makefile,v 1.1 2017/09/29 13:39:59 joerg Exp $
|
|
|
|
DISTNAME= dicttoxml-1.7.4
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= textproc python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=d/dicttoxml/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/quandyfactory/dicttoxml
|
|
COMMENT= Library for simple XML serialization
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
# No real tests
|
|
do-test:
|
|
${NADA}
|
|
|
|
.include "../../lang/python/distutils.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|