gnu: python-biopython: Update to 1.80.
* gnu/packages/bioinformatics.scm (python-biopython): Update to 1.80. [build-system]: Use pyproject-build-system. [arguments]: Remove trailing #T from build phase.
This commit is contained in:
parent
de70f957b2
commit
5167881a60
1 changed files with 5 additions and 5 deletions
|
@ -1237,21 +1237,21 @@ sequencing.")
|
||||||
(define-public python-biopython
|
(define-public python-biopython
|
||||||
(package
|
(package
|
||||||
(name "python-biopython")
|
(name "python-biopython")
|
||||||
(version "1.76")
|
(version "1.80")
|
||||||
(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
|
||||||
"0wlch9xpa0fpgjzyxi6jsfca6iakaq9a05927xg8vqnmvaccnwrq"))))
|
"0hqf3jsxn2sphcx81fx7x3i69sarpjsi70fzw98f8rw7z2d5x02j"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
'(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-before 'check 'set-home
|
(add-before 'check 'set-home
|
||||||
;; Some tests require a home directory to be set.
|
;; Some tests require a home directory to be set.
|
||||||
(lambda _ (setenv "HOME" "/tmp") #t)))))
|
(lambda _ (setenv "HOME" "/tmp"))))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-numpy))
|
(list python-numpy))
|
||||||
(home-page "https://biopython.org/")
|
(home-page "https://biopython.org/")
|
||||||
|
|
Reference in a new issue