about summary refs log tree commit diff
diff options
context:
space:
mode:
authorpjotrp2017-10-14 18:03:46 +0000
committerpjotrp2017-10-14 18:03:46 +0000
commit114fb28cc69562af768cf5dd5eee6b6d0f80019d (patch)
treef13331d9f92d09fe023fae635ace35a51ceaf6c8
parent09b92342689f5c31b3de7678bdcd3f108c6a4d31 (diff)
downloadguix-bioinformatics-114fb28cc69562af768cf5dd5eee6b6d0f80019d.tar.gz
plotly
-rw-r--r--gn/packages/python.scm23
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))