summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-svgutils/package.py
blob: 62c1aff93152d4d9330a21d5e0b8d3c92a7b0a1b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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 PySvgutils(PythonPackage):
    """Python tools to create and manipulate SVG files."""

    homepage = "https://github.com/btel/svg_utils"
    pypi     = "svgutils/svgutils-0.3.4.tar.gz"

    version('0.3.4', sha256='9ef48f44cb1d460a7747dd02694200fda25eb9faf6dea392118def2695e0e053')

    depends_on('py-setuptools', type='build')
    depends_on('py-lxml', type=('build', 'run'))