diff options
author | Ben Woodcroft <donttrustben@gmail.com> | 2017-05-20 08:56:23 +0200 |
---|---|---|
committer | Ben Woodcroft <donttrustben@gmail.com> | 2017-05-21 15:42:08 +0100 |
commit | abc08cbae6d0b3070df8ce7c9c6866e142eaab79 (patch) | |
tree | d1fb56dc897e517036c29a60122b700752e28df5 /gnu | |
parent | c522f57e22d940478b4a4b8a28405469cd7bd4c7 (diff) | |
download | guix-abc08cbae6d0b3070df8ce7c9c6866e142eaab79.tar guix-abc08cbae6d0b3070df8ce7c9c6866e142eaab79.tar.gz |
gnu: python-biom-format: Update to 2.1.6.
* gnu/packages/bioinformatics.scm (python-biom-format): Update to 2.1.6.
[propagated-inputs]: Add python-pandas.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index d35b51d852..1db911b352 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -614,7 +614,7 @@ Python.") (define-public python-biom-format (package (name "python-biom-format") - (version "2.1.5") + (version "2.1.6") (source (origin (method url-fetch) @@ -625,14 +625,15 @@ Python.") (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "1n25w3p1rixbpac8iysmzcja6m4ip5r6sz19l8y6wlwi49hxn278")))) + "08cr7wpahk6zb31h4bs7jmzpvxcqv9s13xz40h6y2h656jvdvnpj")))) (build-system python-build-system) (propagated-inputs `(("python-numpy" ,python-numpy) ("python-scipy" ,python-scipy) ("python-future" ,python-future) ("python-click" ,python-click) - ("python-h5py" ,python-h5py))) + ("python-h5py" ,python-h5py) + ("python-pandas" ,python-pandas))) (native-inputs `(("python-nose" ,python-nose))) (home-page "http://www.biom-format.org") |