summary refs log tree commit diff
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2018-03-04 13:25:32 +0000
committerChristopher Baines <mail@cbaines.net>2018-03-09 18:18:48 +0000
commit16bd3291a4ef84f6caa8fea9fd0f4715b3a8de97 (patch)
tree58851c2e6c99c71d4463a9a3d56d0e2f97349dc4
parentda90f337b31d53d3dc293a83e069984c70cde2ad (diff)
downloadguix-16bd3291a4ef84f6caa8fea9fd0f4715b3a8de97.tar.gz
gnu: Update python-django-gravatar2.
* gnu/packages/django.scm (python-django-gravatar2)[version]: Update from
  1.4.0 to 1.4.2.
  [source]: Update sha256 hash.
  [arguments]: Disable the tests, as the django project for the tests is
  missing.
-rw-r--r--gnu/packages/django.scm7
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index 24d096bc0f..a901af6f14 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -267,15 +267,18 @@ account authentication.")
 (define-public python-django-gravatar2
   (package
     (name "python-django-gravatar2")
-    (version "1.4.0")
+    (version "1.4.2")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "django-gravatar2" version))
        (sha256
         (base32
-         "1v4qyj6kms321yw0z2g1kch6b2dskmv6fjd6sfxzwr4xshq9mccl"))))
+         "1qsv40xywbqsf4mkrmsswrpzqd7nfljxpfiim9an2z3dykn5rka6"))))
     (build-system python-build-system)
+    (arguments
+     '(;; TODO: The django project for the tests is missing from the release.
+       #:tests? #f))
     (inputs
      `(("python-django" ,python-django)))
     (home-page "https://github.com/twaddington/django-gravatar")