diff options
author | pjotrp | 2018-03-20 11:13:56 +0000 |
---|---|---|
committer | pjotrp | 2018-03-20 11:13:56 +0000 |
commit | 84dd8cebae9eefdb7d7f9ca43e53b3ddfc295eb1 (patch) | |
tree | aaa09ca5cf459f762a1eb53c65dc98c5801ff3cd /gn/packages/python.scm | |
parent | 50dbb901666064a9925e6053090ef59419ad1ce5 (diff) | |
download | guix-bioinformatics-84dd8cebae9eefdb7d7f9ca43e53b3ddfc295eb1.tar.gz |
Adding GN python packages for testing
Diffstat (limited to 'gn/packages/python.scm')
-rw-r--r-- | gn/packages/python.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gn/packages/python.scm b/gn/packages/python.scm index 9601b3c..a6a99c6 100644 --- a/gn/packages/python.scm +++ b/gn/packages/python.scm @@ -44,6 +44,27 @@ #:use-module (guix build-system trivial) #:use-module (srfi srfi-1)) +(define-public python-pyvcf + (package + (name "python-pyvcf") + (version "0.6.8") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pyvcf" version)) + (sha256 + (base32 + "1ngryr12d3izmhmwplc46xhyj9i7yhrpm90xnsd2578p7m8p5n79")))) + (build-system python-build-system) + (home-page + "https://github.com/jamescasbon/PyVCF") + (synopsis + "Variant Call Format (VCF) parser for Python") + (description + "Variant Call Format (VCF) parser for Python") + (license #f))) + + (define-public python-elasticsearch (package (name "python-elasticsearch") |