py-chart-studio: new package (#35759)
* py-chart-studio: new package * py-chart-studio: add missing six dependency
This commit is contained in:
parent
dd7af323ed
commit
28f4b5729a
1 changed files with 22 additions and 0 deletions
22
var/spack/repos/builtin/packages/py-chart-studio/package.py
Normal file
22
var/spack/repos/builtin/packages/py-chart-studio/package.py
Normal file
|
@ -0,0 +1,22 @@
|
|||
# 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 PyChartStudio(PythonPackage):
|
||||
"""Utilities for interfacing with plotly's Chart Studio."""
|
||||
|
||||
homepage = "https://pypi.org/project/chart-studio/"
|
||||
pypi = "chart-studio/chart-studio-1.1.0.tar.gz"
|
||||
|
||||
version("1.1.0", sha256="a17283b62470306d77060b200f13f9749c807dd15613c113d36f8d057f5c7019")
|
||||
|
||||
depends_on("py-setuptools", type="build")
|
||||
|
||||
depends_on("py-plotly", type=("build", "run"))
|
||||
depends_on("py-requests", type=("build", "run"))
|
||||
depends_on("py-retrying@1.3.3:", type=("build", "run"))
|
||||
depends_on("py-six", type=("build", "run"))
|
Loading…
Reference in a new issue