2018-10-08 04:52:23 +08:00
|
|
|
# Copyright 2013-2018 Lawrence Livermore National Security, LLC and other
|
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-06-10 22:25:53 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2016-06-10 22:25:53 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
2017-01-17 10:13:37 +08:00
|
|
|
class PyCycler(PythonPackage):
|
2016-06-10 22:25:53 +08:00
|
|
|
"""Composable style cycles."""
|
|
|
|
|
|
|
|
homepage = "http://matplotlib.org/cycler/"
|
|
|
|
url = "https://github.com/matplotlib/cycler/archive/v0.10.0.tar.gz"
|
|
|
|
|
|
|
|
version('0.10.0', '83dd0df7810e838b59e4dd9fa6e2d198')
|
|
|
|
|
2016-08-03 01:02:06 +08:00
|
|
|
depends_on('py-setuptools', type='build')
|
2017-01-08 11:59:02 +08:00
|
|
|
depends_on('py-six', type=('build', 'run'))
|