From mboxrd@z Thu Jan 1 00:00:00 1970 From: contact.ng0@cryptolab.net Subject: [PATCH 4/6] gnu: Add python-django-gravatar2. Date: Sun, 29 Jan 2017 23:26:15 +0000 Message-ID: <20170129232617.19235-5-contact.ng0@cryptolab.net> References: <20170129232617.19235-1-contact.ng0@cryptolab.net> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37227) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cXyqP-0000On-29 for guix-devel@gnu.org; Sun, 29 Jan 2017 18:25:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cXyqL-0005AP-EW for guix-devel@gnu.org; Sun, 29 Jan 2017 18:25:13 -0500 Received: from aibo.runbox.com ([91.220.196.211]:33732) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cXyqL-00059b-87 for guix-devel@gnu.org; Sun, 29 Jan 2017 18:25:09 -0500 Received: from [10.9.9.212] (helo=mailfront12.runbox.com) by mailtransmit02.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1cXyqK-0000Zp-0Q for guix-devel@gnu.org; Mon, 30 Jan 2017 00:25:08 +0100 In-Reply-To: <20170129232617.19235-1-contact.ng0@cryptolab.net> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org Cc: ng0 From: ng0 * gnu/packages/django.scm (python-django-gravatar2): New variable. --- gnu/packages/django.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm index 055bed4a6..a5289e716 100644 --- a/gnu/packages/django.scm +++ b/gnu/packages/django.scm @@ -207,3 +207,27 @@ account authentication.") (define-public python2-django-allauth (package-with-python2 python-django-allauth)) + +(define-public python-django-gravatar2 + (package + (name "python-django-gravatar2") + (version "1.4.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "django-gravatar2" version)) + (sha256 + (base32 + "1v4qyj6kms321yw0z2g1kch6b2dskmv6fjd6sfxzwr4xshq9mccl")))) + (build-system python-build-system) + (inputs + `(("python-django" ,python-django))) + (home-page "https://github.com/twaddington/django-gravatar") + (synopsis "Gravatar support for Django, improved version") + (description + "Essential Gravatar support for Django. Features helper methods, +templatetags and a full test suite.") + (license license:expat))) + +(define-public python2-django-gravatar2 + (package-with-python2 python-django-gravatar2)) -- 2.11.0