New package: py-wordcloud (#28482)
* [py-wordcloud] created template * [py-wordcloud] - added dependencies - added homepage - added description - removed fixmes - updated copyright
This commit is contained in:
parent
a2170c9e04
commit
405adce5ae
20
var/spack/repos/builtin/packages/py-wordcloud/package.py
Normal file
20
var/spack/repos/builtin/packages/py-wordcloud/package.py
Normal file
@ -0,0 +1,20 @@
|
||||
# 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 PyWordcloud(PythonPackage):
|
||||
"""A little word cloud generator in Python."""
|
||||
|
||||
homepage = "https://github.com/amueller/word_cloud"
|
||||
pypi = "wordcloud/wordcloud-1.8.1.tar.gz"
|
||||
|
||||
version('1.8.1', sha256='e6ef771aac17c1cf8558c8d5ef025796184066d7b78f8118aefe011fb0d22952')
|
||||
|
||||
depends_on('py-setuptools', type='build')
|
||||
depends_on('py-numpy@1.6.1:', type=('build', 'run'))
|
||||
depends_on('pil', type=('build', 'run'))
|
||||
depends_on('py-matplotlib', type=('build', 'run'))
|
Loading…
Reference in New Issue
Block a user