From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: Re: [PATCH 09/10] gnu: Add python2-functools32. Date: Fri, 4 Dec 2015 11:00:02 +0100 Message-ID: References: <1449153811-32039-1-git-send-email-efraim@flashner.co.il> <1449153811-32039-10-git-send-email-efraim@flashner.co.il> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33920) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a4nA4-0000gD-4d for guix-devel@gnu.org; Fri, 04 Dec 2015 05:00:21 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a4n9y-0006U0-BR for guix-devel@gnu.org; Fri, 04 Dec 2015 05:00:20 -0500 Received: from venus.bbbm.mdc-berlin.de ([141.80.25.30]:53885) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a4n9y-0006Tu-4s for guix-devel@gnu.org; Fri, 04 Dec 2015 05:00:14 -0500 In-Reply-To: <1449153811-32039-10-git-send-email-efraim@flashner.co.il> 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Efraim Flashner Cc: guix-devel@gnu.org Efraim Flashner writes: > +(define-public python2-functools32 > + (package > + (name "python2-functools32") > + (version "3.2.3-2") > + (source > + (origin > + (method url-fetch) > + (uri (pypi-uri "functools32" version)) > + (sha256 > + (base32 > + "0v8ya0b58x47wp216n1zamimv4iw57cxz3xxhzix52jkw3xks9gn")))) > + (build-system python-build-system) > + (arguments > + `(#:python ,python-2 > + #:tests? #f)) ; no test target > + (native-inputs > + `(("python2-setuptools" ,python2-setuptools))) > + (home-page "https://github.com/MiCHiLU/python-functools32") > + (synopsis > + "Backport of the functools module from Python 3.2.3") > + (description > + "Backport of the functools module from Python 3.2.3 for use on 2.= 7 and PyPy.") We need the description to be a full sentence. =E2=80=9CThis package bac= kports the @code{functools} module ...=E2=80=9D. Something about =E2=80=9Cfor u= se on=E2=80=9D sounds odd to me; maybe =E2=80=9Cfor use with older versions of Python and with = PyPy=E2=80=9D?