diff options
author | Ben Woodcroft <donttrustben@gmail.com> | 2017-05-21 22:06:51 +0100 |
---|---|---|
committer | Ben Woodcroft <donttrustben@gmail.com> | 2017-05-22 11:44:19 +0100 |
commit | 3cbfc149c37af0a513a2d9bde20e7cb198fd4f12 (patch) | |
tree | a32ab4b72efa5e67f47bc8a6f8d140ca3b63f564 /gnu | |
parent | b4584137215a6127a7275dfb6000395cd28af3d0 (diff) | |
download | guix-3cbfc149c37af0a513a2d9bde20e7cb198fd4f12.tar guix-3cbfc149c37af0a513a2d9bde20e7cb198fd4f12.tar.gz |
gnu: taxtastic: Update to 0.6.4.
* gnu/packages/bioinformatics.scm (taxtastic): Update to 0.6.4.
[source]: Use PyPI URI.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 8f1673ec47..d5e32effac 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -5436,18 +5436,13 @@ Cuffdiff or Ballgown programs.") (define-public taxtastic (package (name "taxtastic") - (version "0.5.7") - ;; Versions after 0.5.4 do not appear to be distributed on PyPI so we - ;; download the package from GitHub. + (version "0.6.4") (source (origin (method url-fetch) - (uri (string-append - "https://github.com/fhcrc/taxtastic/archive/v" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (uri (pypi-uri "taxtastic" version)) (sha256 (base32 - "1s0h5y1lds1c40jhir5585ffm6yjyn8h5aqimpgv64rhqhfv56xx")))) + "0s79z8kfl853x7l4h8ms05k31q87aw62nrchlk20w9n227j35929")))) (build-system python-build-system) (arguments `(#:python ,python-2 |