78391d6fdc
Python has all kinds of data validation tools, but every one of them seems to require defining a schema / form. This is a simple validation library where validating a simple value does not require defining a form or a schema.
11 lines
298 B
Makefile
11 lines
298 B
Makefile
# $NetBSD: options.mk,v 1.1 2014/06/14 14:35:09 rodent Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.py-validators
|
|
PKG_SUPPORTED_OPTIONS= tests
|
|
PKG_SUGGESTED_OPTIONS+= # blank
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mtests)
|
|
DEPENDS+= ${PYPKGPREFIX}-test>=2.2.3:../../devel/py-test
|
|
.endif
|