From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: Re: [PATCH 10/10] gnu: Add python-scikit-bio. Date: Thu, 21 Apr 2016 17:09:45 +0200 Message-ID: References: <1461244921-7412-1-git-send-email-donttrustben@gmail.com> <1461244921-7412-11-git-send-email-donttrustben@gmail.com> 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]:40989) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1atGEu-00056s-NN for Guix-devel@gnu.org; Thu, 21 Apr 2016 11:09:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1atGEq-0000OV-Lr for Guix-devel@gnu.org; Thu, 21 Apr 2016 11:09:56 -0400 Received: from venus.bbbm.mdc-berlin.de ([141.80.25.30]:42519) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1atGEq-0000OJ-Fd for Guix-devel@gnu.org; Thu, 21 Apr 2016 11:09:52 -0400 In-Reply-To: <1461244921-7412-11-git-send-email-donttrustben@gmail.com> 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: Ben Woodcroft Cc: Guix-devel@gnu.org Ben Woodcroft writes: > * gnu/packages/python.scm (python-scikit-bio, > python2-scikit-bio): New variables. > --- > gnu/packages/python.scm | 91 +++++++++++++++++++++++++++++++++++++++++= ++++++++ > 1 file changed, 91 insertions(+) > > diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm > index 7aae6fc..b359422 100644 > --- a/gnu/packages/python.scm > +++ b/gnu/packages/python.scm > @@ -8945,6 +8945,97 @@ numbers (i.e. signed/unsigned floats or ints), o= r as versions.") > ("python2-enum34" ,python2-enum34) > ("python2-setuptools" ,python2-setuptools))))))) > =20 > +(define-public python-scikit-bio > + (package > + (name "python-scikit-bio") > + (version "0.4.2") > + (source > + (origin > + (method url-fetch) > + (uri (string-append > + "https://pypi.python.org/packages/source/s/scikit-bio/sci= kit-bio-" > + version > + ".tar.gz")) Here, too: please use =E2=80=9C(pypi-uri...)=E2=80=9D if possible. ~~ Ricardo