summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorChristopher Christofi <77968333+ChristopherChristofi@users.noreply.github.com>2023-02-17 04:43:35 +0000
committerGitHub <noreply@github.com>2023-02-16 22:43:35 -0600
commit946816d78701d7c93697ab7201444d0160ed6105 (patch)
tree3851e81b918ad6f27e2e08c4b7fd0ac52dd8cd82 /var
parent03fb5c6aa9785ab3b19a0ffc2df6f38429934517 (diff)
downloadspack-946816d78701d7c93697ab7201444d0160ed6105.tar.gz
spack-946816d78701d7c93697ab7201444d0160ed6105.tar.bz2
spack-946816d78701d7c93697ab7201444d0160ed6105.tar.xz
spack-946816d78701d7c93697ab7201444d0160ed6105.zip
py-cufflinks: new package version with 0.17.3 (#35427)
* py-cufflinks: new package version with 0.17.3 * Update var/spack/repos/builtin/packages/py-cufflinks/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> --------- Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-cufflinks/package.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-cufflinks/package.py b/var/spack/repos/builtin/packages/py-cufflinks/package.py
new file mode 100644
index 0000000000..7b22857040
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-cufflinks/package.py
@@ -0,0 +1,25 @@
+# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
+#
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
+from spack.package import *
+
+
+class PyCufflinks(PythonPackage):
+ """Productivity Tools for Plotly + Pandas. This library binds the power
+ of plotly with the flexibility of pandas for easy plotting."""
+
+ homepage = "https://github.com/santosjorge/cufflinks"
+ pypi = "cufflinks/cufflinks-0.17.3.tar.gz"
+
+ version("0.17.3", sha256="48c1b3406dc030004121966489eebc5518cea70fd4e3f16379b491328501a644")
+
+ depends_on("py-setuptools@34.4.1:", type=("build", "run"))
+ depends_on("py-numpy@1.9.2:", type=("build", "run"))
+ depends_on("py-pandas@0.19.2:", type=("build", "run"))
+ depends_on("py-plotly@4.1.1:", type=("build", "run"))
+ depends_on("py-six@1.9.0:", type=("build", "run"))
+ depends_on("py-colorlover@0.2.1:", type=("build", "run"))
+ depends_on("py-ipython@5.3.0:", type=("build", "run"))
+ depends_on("py-ipywidgets@7.0.0:", type=("build", "run"))