summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-cufflinks/package.py
blob: 74f694f29778737c7a71e1e36eeb06d5624f458e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# 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"

    license("MIT")

    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"))