From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: [PATCH 3/6] gnu: add python-selenium and python2-selenium Date: Sun, 24 Apr 2016 15:19:38 -0400 Message-ID: <20160424191938.GC9128@jasmine> References: <1461266395-2731-1-git-send-email-h.goebel@crazy-compilers.com> <1461266395-2731-4-git-send-email-h.goebel@crazy-compilers.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58439) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1auPZF-00058w-Di for guix-devel@gnu.org; Sun, 24 Apr 2016 15:19:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1auPZC-0004Mh-47 for guix-devel@gnu.org; Sun, 24 Apr 2016 15:19:41 -0400 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:49046) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1auPZC-0004Md-03 for guix-devel@gnu.org; Sun, 24 Apr 2016 15:19:38 -0400 Content-Disposition: inline In-Reply-To: <1461266395-2731-4-git-send-email-h.goebel@crazy-compilers.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: Hartmut Goebel Cc: guix-devel@gnu.org On Thu, Apr 21, 2016 at 09:19:50PM +0200, Hartmut Goebel wrote: > * gnu/packages/python.scm (python-selenium) (python2-selenium): > New variables. > --- > gnu/packages/python.scm | 29 +++++++++++++++++++++++++++++ > 1 file changed, 29 insertions(+) > > diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm > index 0241ed5..3c81a1f 100644 > --- a/gnu/packages/python.scm > +++ b/gnu/packages/python.scm > @@ -8793,3 +8793,32 @@ provides support for parsing, splitting and formatting SQL statements.") > > (define-public python2-sqlparse > (package-with-python2 python-sqlparse)) > + > +(define-public python-selenium > + (package > + (name "python-selenium") > + (version "2.53.1") > + (source > + (origin > + (method url-fetch) > + (uri (pypi-uri "selenium" version)) > + (sha256 > + (base32 > + "1pj0ci4dxwfa0pkvjc60k7pw74zy6ay473mnzckbb58jlhc994jk")))) > + (build-system python-build-system) > + ;; FIXME webdriver/firefox contains pre-build binaries. Build them in > + ;; guix, but the source is not included. Does Selenium work at all without these blobs? Did you check what other free distros do about this? Here's a link to the Debian packaging: https://sources.debian.net/src/python-selenium/