gnu: python-biopython: Update to 1.68.

* gnu/packages/bioinformatics.scm (python-biopython): Update to 1.68.
[arguments]: New field.
This commit is contained in:
Ben Woodcroft 2016-09-19 11:28:50 +10:00
parent ded5d02bd0
commit 4ce6030588
No known key found for this signature in database
GPG key ID: E44DCCD146E0CCF4

View file

@ -594,15 +594,21 @@ (define-public bioperl-minimal
(define-public python-biopython (define-public python-biopython
(package (package
(name "python-biopython") (name "python-biopython")
(version "1.66") (version "1.68")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
;; use PyPi rather than biopython.org to ease updating ;; use PyPi rather than biopython.org to ease updating
(uri (pypi-uri "biopython" version)) (uri (pypi-uri "biopython" version))
(sha256 (sha256
(base32 (base32
"1gdv92593klimg22icf5j9by7xiq86jnwzkpz4abaa05ylkdf6hp")))) "07qc7nz0k77y8hf8s18rscvibvm91zw0kkq7ylrhisf8vp8hkp6i"))))
(build-system python-build-system) (build-system python-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-before 'check 'set-home
;; Some tests require a home directory to be set.
(lambda _ (setenv "HOME" "/tmp") #t)))))
(inputs (inputs
`(("python-numpy" ,python-numpy))) `(("python-numpy" ,python-numpy)))
(native-inputs (native-inputs