
* New package: add py-jellyfish * New package: add py-us * New package: add py-xlwt * New package: add py-svgpathtools * New package: add py-svgwrite * Change checksums to sha256 * Fix Copyright year. * Add missing dependencies.
20 lines
644 B
Python
20 lines
644 B
Python
# Copyright 2013-2019 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 PySvgwrite(PythonPackage):
|
|
"""A Python library to create SVG drawings."""
|
|
|
|
homepage = "https://pypi.org/project/svgwrite/"
|
|
url = "https://pypi.io/packages/source/s/svgwrite/svgwrite-1.1.12.zip"
|
|
|
|
version('1.1.12', sha256='968c99f193f34f0fa7f0b3e82f49b93789c7c45cd89ce190480f16020d41ab79')
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
depends_on('py-pyparsing@2.0.1:', type=('build', 'run'))
|