diff options
author | pjotrp | 2017-10-14 18:03:46 +0000 |
---|---|---|
committer | pjotrp | 2017-10-14 18:03:46 +0000 |
commit | 114fb28cc69562af768cf5dd5eee6b6d0f80019d (patch) | |
tree | f13331d9f92d09fe023fae635ace35a51ceaf6c8 /gn/packages/python.scm | |
parent | 09b92342689f5c31b3de7678bdcd3f108c6a4d31 (diff) | |
download | guix-bioinformatics-114fb28cc69562af768cf5dd5eee6b6d0f80019d.tar.gz |
plotly
Diffstat (limited to 'gn/packages/python.scm')
-rw-r--r-- | gn/packages/python.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gn/packages/python.scm b/gn/packages/python.scm index 9bdb1ca..f9bb733 100644 --- a/gn/packages/python.scm +++ b/gn/packages/python.scm @@ -41,6 +41,29 @@ #:use-module (guix build-system trivial) #:use-module (srfi srfi-1)) + +(define-public python-plotly ; guix candidate + ; python-plotly, python-requests, python-pytz +(package + (name "python-plotly") + (version "2.1.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "plotly" version)) + (sha256 + (base32 + "1r4y9l5z62sqyd2r205vchlvlc1f7dcgjyagjkxiwywh27f9js7z")))) + (build-system python-build-system) + (arguments `(#:tests? #f)) ;; No tests. + (home-page "https://plot.ly/python/") + (synopsis + "Python plotting library for collaborative, interactive, publication-quality graphs.") + (description + "Python plotting library for collaborative, interactive, publication-quality graphs.") + (license license:expat)) +) + (define-public python2-flask-sqlalchemy ; guix? (package-with-python2 python-flask-sqlalchemy)) |