[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/57: gnu: python-django-simple-math-captcha: Update to 1.0.9.
From: |
guix-commits |
Subject: |
08/57: gnu: python-django-simple-math-captcha: Update to 1.0.9. |
Date: |
Tue, 22 Sep 2020 12:43:31 -0400 (EDT) |
mbakke pushed a commit to branch master
in repository guix.
commit 9fb6275e0b6496f434edecb1faec4e8c96d1c883
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Tue Sep 1 11:30:23 2020 +0200
gnu: python-django-simple-math-captcha: Update to 1.0.9.
* gnu/packages/django.scm (python-django-simple-math-captcha): Update to
1.0.9.
[source]: Change to GIT-FETCH.
[arguments]: Remove #:tests?. Add phases to patch imports and run tests.
[native-inputs]: Add PYTHON-MOCK.
[propagated-inputs]: Add PYTHON-SIX.
---
gnu/packages/django.scm | 34 +++++++++++++++++++++++++---------
1 file changed, 25 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index b1de294..312d16a 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -200,21 +200,37 @@ commands, additional database fields and admin
extensions.")
(define-public python-django-simple-math-captcha
(package
(name "python-django-simple-math-captcha")
- (version "1.0.7")
+ (version "1.0.9")
+ (home-page "https://github.com/alsoicode/django-simple-math-captcha")
(source (origin
- (method url-fetch)
- (uri (pypi-uri "django-simple-math-captcha" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url home-page)
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
(base32
- "0906hms6y6znjhpd0g4wmzv9vcla4brkdpsm4zha9zdj8g5vq2hd"))))
+ "0fhy9k8haqa1296v0qpg1b5w7y3pyw9qi9z9laj5ijry1gk35qaw"))))
(build-system python-build-system)
(arguments
- ;; FIXME: Upstream uses a 'runtests.py' script that is not
- ;; present in the pypi tarball.
- '(#:tests? #f))
+ '(#:phases (modify-phases %standard-phases
+ (add-after 'unpack 'patch-six-imports
+ (lambda _
+ ;; Django no longer bundles six, adjust the imports
+ ;; accordingly. The six dependency can likely be
+ ;; removed in the next version.
+ (substitute* (find-files "." "\\.py$")
+ (("from django\\.utils import six")
+ "import six"))
+ #t))
+ (replace 'check
+ (lambda _
+ (invoke "python" "runtests.py"))))))
+ (native-inputs
+ `(("python-mock" ,python-mock)))
(propagated-inputs
- `(("python-django" ,python-django)))
- (home-page "https://github.com/alsoicode/django-simple-math-captcha")
+ `(("python-django" ,python-django)
+ ("python-six" ,python-six)))
(synopsis "Easy-to-use math field/widget captcha for Django forms")
(description
"A multi-value-field that presents a human answerable question,
- branch master updated (c7011ff -> a2c0dbb), guix-commits, 2020/09/22
- 02/57: gnu: Remove pootle., guix-commits, 2020/09/22
- 01/57: gnu: python-uritemplate: Update to 3.0.1., guix-commits, 2020/09/22
- 04/57: gnu: Add python-asgiref., guix-commits, 2020/09/22
- 07/57: gnu: python-pytest-django: Update to 3.10.0., guix-commits, 2020/09/22
- 05/57: gnu: python-django: Update to 3.1.1., guix-commits, 2020/09/22
- 08/57: gnu: python-django-simple-math-captcha: Update to 1.0.9.,
guix-commits <=
- 09/57: gnu: python-django-classy-tags: Update to 2.0.0., guix-commits, 2020/09/22
- 03/57: gnu: Remove python2-django-mailman3., guix-commits, 2020/09/22
- 14/57: gnu: python-django-filter: Update to 2.3.0., guix-commits, 2020/09/22
- 15/57: gnu: python-django-allauth: Update to 0.42.0., guix-commits, 2020/09/22
- 18/57: gnu: python-django-jinja: Update to 2.6.0., guix-commits, 2020/09/22
- 06/57: gnu: python-django: Propagate python-sqlparse., guix-commits, 2020/09/22
- 11/57: gnu: python-django-taggit: Update to 1.3.0., guix-commits, 2020/09/22
- 24/57: gnu: python-django-picklefield: Update to 3.0.1., guix-commits, 2020/09/22
- 47/57: gnu: Add python-jsonplus., guix-commits, 2020/09/22
- 16/57: gnu: Add python-css-html-js-minify., guix-commits, 2020/09/22