py-svgutils: new package (#26437)

This commit is contained in:
Manuela Kuhn 2021-10-03 02:38:36 +02:00 committed by GitHub
parent 34a1e4d8b6
commit 4c1285b1c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,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'))