Rebased upon upstream (#29337)

This commit is contained in:
Vivian Hafener 2022-03-05 15:03:03 -05:00 committed by GitHub
parent afaaf04fa9
commit ce4b812b52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,21 @@
# 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 import *
class PyColorio(PythonPackage):
"""Tools for color research"""
homepage = "https://github.com/nschloe/colorio"
pypi = "colorio/colorio-0.11.2.tar.gz"
version('0.11.2', sha256='aa45d8e0a2e506c4019d4fb488d34a107d7f803c8e8ff355e2e57c01f6f1cd81')
depends_on('python@3.7:', type=('build', 'run'))
depends_on('py-flit-core@3.2:3.6', type='build')
depends_on('py-numpy@1.20:', type=('build', 'run'))
depends_on('py-matplotlib', type=('build', 'run'))
depends_on('py-npx', type=('build', 'run'))