From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39958) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eRD97-0007KZ-Oh for guix-patches@gnu.org; Tue, 19 Dec 2017 03:21:11 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eRD94-0000FB-8B for guix-patches@gnu.org; Tue, 19 Dec 2017 03:21:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:60707) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eRD94-0000F3-1s for guix-patches@gnu.org; Tue, 19 Dec 2017 03:21:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eRD93-00087k-Pe for guix-patches@gnu.org; Tue, 19 Dec 2017 03:21:01 -0500 Subject: [bug#29768] [PATCH 2/5] gnu: Add python-django-tagging. Resent-Message-ID: From: Ricardo Wurmus Date: Tue, 19 Dec 2017 09:04:30 +0100 In-Reply-To: <20171219080433.10392-1-rekado@elephly.net> References: <20171219080433.10392-1-rekado@elephly.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Message-ID: <20171219080433.10392-2-rekado@elephly.net> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 29768@debbugs.gnu.org Cc: Ricardo Wurmus * gnu/packages/django.scm (python-django-tagging, python2-django-tagging): = New variables. --- gnu/packages/django.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm index 7f3981733..4f3e4914f 100644 --- a/gnu/packages/django.scm +++ b/gnu/packages/django.scm @@ -3,6 +3,7 @@ ;;; Copyright =C2=A9 2016 Efraim Flashner ;;; Copyright =C2=A9 2017 ng0 ;;; Copyright =C2=A9 2017 Tobias Geerinckx-Rice +;;; Copyright =C2=A9 2017 Ricardo Wurmus ;;; ;;; This file is part of GNU Guix. ;;; @@ -718,3 +719,25 @@ static files.") lower the barrier of entry, providing tools to enable teams to work toward= s higher quality while welcoming newcomers.") (license license:gpl3+))) + +(define-public python-django-tagging + (package + (name "python-django-tagging") + (version "0.4.6") + (source + (origin + (method url-fetch) + (uri (pypi-uri "django-tagging" version)) + (sha256 + (base32 + "0s7b4v45j783yaxs7rni10k24san0ya77nqz4s7zdf3jhfpk42r1")))) + (build-system python-build-system) + (home-page "https://github.com/Fantomas42/django-tagging") + (synopsis "Generic tagging application for Django") + (description "This package provides a generic tagging application for +Django projects, which allows association of a number of tags with any +@code{Model} instance and makes retrieval of tags simple.") + (license license:bsd-3))) + +(define-public python2-django-tagging + (package-with-python2 python-django-tagging)) --=20 2.15.0