gnu: Add python2-biopython-1.66.

* gnu/packages/bioinformatics.scm (python2-biopython-1.66): New variable.
This commit is contained in:
Ben Woodcroft 2016-09-19 12:15:07 +10:00
parent 8c8da1389e
commit 4b1a152826
No known key found for this signature in database
GPG Key ID: E44DCCD146E0CCF4
1 changed files with 14 additions and 0 deletions

View File

@ -630,6 +630,20 @@ into separate processes; and more.")
(native-inputs `(("python2-setuptools" ,python2-setuptools)
,@(package-native-inputs base))))))
;; An outdated version of biopython is required for seqmagick, see
;; https://github.com/fhcrc/seqmagick/issues/59
;; When that issue has been resolved this package should be removed.
(define python2-biopython-1.66
(package
(inherit python2-biopython)
(version "1.66")
(source (origin
(method url-fetch)
(uri (pypi-uri "biopython" version))
(sha256
(base32
"1gdv92593klimg22icf5j9by7xiq86jnwzkpz4abaa05ylkdf6hp"))))))
(define-public bpp-core
;; The last release was in 2014 and the recommended way to install from source
;; is to clone the git repository, so we do this.