diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-07-02 15:05:01 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-07-09 17:07:23 +0200 |
commit | eb2200f3bd6d087593abfaf181941c36e08fbc43 (patch) | |
tree | 15e70fa327a7ee62c0a4297f97048635eac905e8 | |
parent | bdb31853f0d4051001ff1ca1febe1f695a3e10fc (diff) | |
download | patches-eb2200f3bd6d087593abfaf181941c36e08fbc43.tar patches-eb2200f3bd6d087593abfaf181941c36e08fbc43.tar.gz |
gnu: Add python-py2bit.
* gnu/packages/bioinformatics.scm (python-py2bit): New variable.
-rw-r--r-- | gnu/packages/bioinformatics.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 55c2975a1e..d2675428c9 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -2058,6 +2058,24 @@ trees (phylogenies) and characters.") (native-inputs `(("python2-nose" ,python2-nose) ,@(package-native-inputs base)))))) +(define-public python-py2bit + (package + (name "python-py2bit") + (version "0.2.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "py2bit" version)) + (sha256 + (base32 + "1cdf4qlmgwsh1f4k0wdv2sr8x9qn4366p0k3614vbd0fpqiarxrl")))) + (build-system python-build-system) + (home-page "https://github.com/dpryan79/py2bit") + (synopsis "Access 2bit files using lib2bit") + (description + "This package provides Python bindings for lib2bit to access 2bit files +with Python.") + (license license:expat))) (define-public deeptools (package |