From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marius Bakke Subject: [PATCH 4/4] gnu: Add python2-pbcommand. Date: Sun, 25 Sep 2016 22:17:28 +0100 Message-ID: <20160925211728.7636-4-mbakke@fastmail.com> References: <20160925211728.7636-1-mbakke@fastmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45322) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1boGoT-0002Jr-BA for guix-devel@gnu.org; Sun, 25 Sep 2016 17:18:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1boGoQ-0004bD-V6 for guix-devel@gnu.org; Sun, 25 Sep 2016 17:18:16 -0400 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:59671) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1boGoO-0004Yt-Mp for guix-devel@gnu.org; Sun, 25 Sep 2016 17:18:14 -0400 In-Reply-To: <20160925211728.7636-1-mbakke@fastmail.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: guix-devel@gnu.org Cc: Marius Bakke * gnu/packages/bioinformatics.scm (python2-pbcommand): New variable. --- gnu/packages/bioinformatics.scm | 50 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 1bf91a9..9343cc6 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -3373,6 +3373,56 @@ interrupted by stop codons. OrfM finds and prints these ORFs.") (home-page "https://github.com/wwood/OrfM") (license license:lgpl3+))) +(define-public python2-pbcommand + ;; Upstream does not tag git releases and PyPi is out of date. + ;; See https://github.com/PacificBiosciences/pbcommand/issues/116 + (let ((revision "1") + (commit "e83a3443a1cd42b4da0d210201d711ede789917f")) + (package + (name "python2-pbcommand") + (version (string-append "0.4.11-" revision "." (string-take commit 7))) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/PacificBiosciences/pbcommand.git") + (commit commit))) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "1kwg84f23l7ik65qy7cxa6g5nipc2y23mppigd4j3vlzam18v52h")))) + (build-system python-build-system) + (arguments + `(#:python ,python-2 ; Python-2 only. + #:configure-flags '("--single-version-externally-managed" "--root=/") + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'substitute-/bin/bash + (lambda _ + ;; Fully qualify /bin/bash for running external commands. + (substitute* "pbcommand/engine/runner.py" + (("/bin/bash") (which "bash"))) + #t)) + (replace 'check + (lambda _ (zero? (system* "nosetests" "-v"))))))) + (native-inputs + `(("python-nose" ,python2-nose) + ("python-sphinx-bootstrap-theme" ,python2-sphinx-bootstrap-theme) + ("python-sphinx-argparse" ,python2-sphinx-argparse) + ("python-tox" ,python2-tox) + ("python-setuptools" ,python2-setuptools))) + (propagated-inputs + `(("python-functools32" ,python2-functools32) + ("python-jsonschema" ,python2-jsonschema) + ("python-numpy" ,python2-numpy "out") + ("python-avro" ,python2-avro) + ("python-requests" ,python2-requests) + ("python-iso8601" ,python2-iso8601))) + (home-page "https://github.com/PacificBiosciences/pbcommand") + (synopsis "PacBio common models and CLI tool contract interface") + (description "PacBio library for common utils, models, and tools +to interface with pbsmrtpipe workflow engine.") + (license license:bsd-3)))) + (define-public python2-pbcore (package (name "python2-pbcore") -- 2.10.0