* gnu/packages/django.scm: (python-django-simple-math-captcha) New function. --- gnu/packages/django.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+)
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm index c22830e..12e2bb1 100644 --- a/gnu/packages/django.scm +++ b/gnu/packages/django.scm @@ -58,3 +58,26 @@ DRY principle.") (license license:bsd-3))) +(define-public python-django-simple-math-captcha +(package + (name "python-django-simple-math-captcha") + (version "1.0.7") + (source + (origin + (method url-fetch) + (uri (pypi-uri "django-simple-math-captcha" version)) + (sha256 + (base32 + "0906hms6y6znjhpd0g4wmzv9vcla4brkdpsm4zha9zdj8g5vq2hd")))) + (build-system python-build-system) + (inputs + `(("python-django" ,python-django) + ("python-setuptools" ,python-setuptools))) + (home-page "https://github.com/alsoicode/django-simple-math-captcha") + (synopsis + "Easy-to-use math field/widget captcha for Django forms") + (description + "A multi-value-field that presents a human answerable question, +with no settings.py configuration necessary, but instead can be +configured with arguments to the field constructor.") + (license license:asl2.0))) -- 2.7.4