diff options
author | Muriithi Frederick Muriuki | 2018-04-08 11:35:00 +0300 |
---|---|---|
committer | Muriithi Frederick Muriuki | 2018-04-08 11:35:00 +0300 |
commit | b7853e6340adc3bc10cc48931db7c8f2ebe8c2d5 (patch) | |
tree | 79f98d79f7c4c3b83947098ce0bd7c875a23f891 /gn/packages/python.scm | |
parent | fc284297def0b68c5a9fdd6c31cf9180b23fe73f (diff) | |
parent | 86fb35d3076401f899a5f3ae99403ecb25e3c260 (diff) | |
download | guix-bioinformatics-b7853e6340adc3bc10cc48931db7c8f2ebe8c2d5.tar.gz |
Merge branch 'master' of https://gitlab.com/genenetwork/guix-bioinformatics
Diffstat (limited to 'gn/packages/python.scm')
-rw-r--r-- | gn/packages/python.scm | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/gn/packages/python.scm b/gn/packages/python.scm index ff8bf57..f254ce3 100644 --- a/gn/packages/python.scm +++ b/gn/packages/python.scm @@ -64,40 +64,6 @@ "Variant Call Format (VCF) parser for Python") (license #f))) - -(define-public python-elasticsearch - (package - (name "python-elasticsearch") - (version "6.1.1") - (source - (origin - (method url-fetch) - (uri (pypi-uri "elasticsearch" version)) - (sha256 - (base32 - "1kjxl45yvvgfb5fmamx0kfsfg9pzphiqrwbkns3s28r1w7ya74cd")))) - (build-system python-build-system) - (native-inputs - `(("python-mock" ,python-mock) - ("python-nosexcover" ,python-nosexcover) - ("python-pyaml" ,python-pyaml) - ("python-requests" ,python-requests))) - (propagated-inputs - `(("urllib3" ,python-urllib3))) - (arguments - ;; tests require the test_elasticsearch module but it is not distributed. - `(#:tests? #f)) - (home-page "https://github.com/elastic/elasticsearch-py") - (synopsis "Low-level client for Elasticsearch") - (description "Official low-level client for Elasticsearch. Its goal is to -provide common ground for all Elasticsearch-related code in Python; because of -this it tries to be opinion-free and very extendable.") - (license license:expat))) - -(define-public python2-elasticsearch - (package-with-python2 python-elasticsearch)) - - (define-public python2-rpy2 (package (name "python2-rpy2") |