
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
22 lines
773 B
Python
22 lines
773 B
Python
# Copyright 2013-2021 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 PyWeblogo(PythonPackage):
|
|
"""WebLogo is a web based application designed to make the generation of
|
|
sequence logos as easy and painless as possible."""
|
|
|
|
homepage = "http://weblogo.threeplusone.com"
|
|
pypi = "weblogo/weblogo-3.6.0.tar.gz"
|
|
|
|
version('3.6.0', sha256='af5a9f065581f18d71bd7c22b160c1e443932f22cab992d439d3dc8757c80a85')
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
depends_on('ghostscript', type=('build', 'run'))
|
|
depends_on('pdf2svg', type=('build', 'run'))
|
|
depends_on('py-numpy', type=('build', 'run'))
|