3
4
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add python-biothings-client.

* gnu/packages/bioinformatics.scm (python-biothings-client): New variable.
This commit is contained in:
Ricardo Wurmus 2021-12-02 11:57:13 +01:00
parent c2c63a00de
commit b15a525703
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -10321,6 +10321,25 @@ graphs. This library makes it easy to work with @file{.loom} files for
single-cell RNA-seq data.")
(license license:bsd-3)))
(define-public python-biothings-client
(package
(name "python-biothings-client")
(version "0.2.6")
(source
(origin
(method url-fetch)
(uri (pypi-uri "biothings_client" version))
(sha256
(base32 "0bccs37d5saxn5xsd2rfpkrnc5a120xs3ibizai66fgvp1vxbnc4"))))
(build-system python-build-system)
(arguments `(#:tests? #false)) ; require internet access
(propagated-inputs `(("python-requests" ,python-requests)))
(home-page "https://github.com/biothings/biothings_client.py")
(synopsis "Python client for BioThings API services")
(description "This package provides a Python client for BioThings
API services.")
(license license:bsd-3)))
;; We cannot use the latest commit because it requires Java 9.
(define-public java-forester
(let ((commit "86b07efe302d5094b42deed9260f719a4c4ac2e6")