summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-svgwrite/package.py
blob: d77afaf4ecf58e6a13441f9e8ee8567d69537cdf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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 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'))