[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/06: gnu: deeptools: Update to 2.1.1.
From: |
Ricardo Wurmus |
Subject: |
05/06: gnu: deeptools: Update to 2.1.1. |
Date: |
Thu, 03 Mar 2016 12:50:57 +0000 |
rekado pushed a commit to branch master
in repository guix.
commit 3acb8c857c45252710962f26713c759022c5c60a
Author: Ricardo Wurmus <address@hidden>
Date: Mon Feb 29 14:40:10 2016 +0100
gnu: deeptools: Update to 2.1.1.
* gnu/packages/bioinformatics.scm (deeptools): Update to 2.1.1.
[inputs]: Add "python2-numpydoc" and "python2-pybigwig".
---
gnu/packages/bioinformatics.scm | 13 +++++++------
1 files changed, 7 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 4559cb2..9c58145 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -1238,25 +1238,26 @@ accessing bigWig files.")
(define-public deeptools
(package
(name "deeptools")
- (version "1.5.11")
+ (version "2.1.1")
(source (origin
(method url-fetch)
- (uri (string-append
- "https://github.com/fidelram/deepTools/archive/"
- version ".tar.gz"))
+ (uri (string-append "https://github.com/fidelram/deepTools/"
+ "archive/" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
- "1kaagygcbvjs9sxd9cqmskd02wcfp9imvb735r087w7hwqpvz6fs"))))
+ "1nmfin0zjdby3vay3r4flvz94dr6qjhj41ax4yz3vx13j6wz8izd"))))
(build-system python-build-system)
(arguments
`(#:python ,python-2))
(inputs
`(("python-scipy" ,python2-scipy)
("python-numpy" ,python2-numpy)
+ ("python-numpydoc" ,python2-numpydoc)
("python-matplotlib" ,python2-matplotlib)
("python-bx-python" ,python2-bx-python)
- ("python-pysam" ,python2-pysam)))
+ ("python-pysam" ,python2-pysam)
+ ("python-pybigwig" ,python2-pybigwig)))
(native-inputs
`(("python-mock" ,python2-mock) ;for tests
("python-pytz" ,python2-pytz) ;for tests
- branch master updated (937690f -> 649e9b3), Ricardo Wurmus, 2016/03/03
- 01/06: gnu: python-pysam, python2-pysam: Move to bioinformatics.scm., Ricardo Wurmus, 2016/03/03
- 02/06: gnu: python-pysam: Update to 0.8.4., Ricardo Wurmus, 2016/03/03
- 03/06: gnu: Add python-pybigwig., Ricardo Wurmus, 2016/03/03
- 06/06: gnu: python-pysam: Move cython and setuptools to native inputs., Ricardo Wurmus, 2016/03/03
- 04/06: gnu: deeptools: Change "propagated-inputs" to "inputs"., Ricardo Wurmus, 2016/03/03
- 05/06: gnu: deeptools: Update to 2.1.1.,
Ricardo Wurmus <=