mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
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.
This commit is contained in:
parent
92607967c2
commit
9fb6275e0b
1 changed files with 25 additions and 9 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue