summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-plotly/package.py
blob: cd315180ed37561ecceb11e378b491f24763454f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2013-2019 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 import *


class PyPlotly(PythonPackage):
    """An interactive, browser-based graphing library for Python"""

    homepage = "https://plot.ly/python/"
    url      = "https://github.com/plotly/plotly.py/archive/v2.2.0.tar.gz"

    version('2.2.0', sha256='dad2a49fe355dddb6ae159e96c10ac22413a33cbac513b4dbf3791e63ec33c1f')

    depends_on('py-setuptools', type='build')
    depends_on('py-requests@2.3.0', type=('build', 'run'))
    depends_on('py-six@1.8.0', type=('build', 'run'))
    depends_on('py-pytz@2014.9', type=('build', 'run'))