19 lines
646 B
Python
19 lines
646 B
Python
# Copyright 2013-2022 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 PyPalettable(PythonPackage):
|
|
"""Color palettes for Python."""
|
|
|
|
homepage = "https://jiffyclub.github.io/palettable/"
|
|
pypi = "palettable/palettable-3.0.0.tar.gz"
|
|
|
|
version("3.3.0", sha256="72feca71cf7d79830cd6d9181b02edf227b867d503bec953cf9fa91bf44896bd")
|
|
version("3.0.0", sha256="eed9eb0399386ff42f90ca61d4fa38a1819a93d5adfc2d546e3e2869d9972c31")
|
|
|
|
depends_on("py-setuptools", type="build")
|