18 lines
484 B
Python
18 lines
484 B
Python
# Copyright Spack Project Developers. See COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
from spack.package import *
|
|
|
|
|
|
class PySvgwrite(PythonPackage):
|
|
"""A Python library to create SVG drawings."""
|
|
|
|
pypi = "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"))
|