diff options
author | Manuela Kuhn <36827019+manuelakuhn@users.noreply.github.com> | 2021-10-03 02:38:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-03 02:38:36 +0200 |
commit | 4c1285b1c22e3f55e1660e214173a50e6abb5819 (patch) | |
tree | 5d662700bfee65d1cfcdf4577928a9aec52ca2e2 | |
parent | 34a1e4d8b60a1a9acc300c37af5e6c9eb6c73f5d (diff) | |
download | spack-4c1285b1c22e3f55e1660e214173a50e6abb5819.tar.gz spack-4c1285b1c22e3f55e1660e214173a50e6abb5819.tar.bz2 spack-4c1285b1c22e3f55e1660e214173a50e6abb5819.tar.xz spack-4c1285b1c22e3f55e1660e214173a50e6abb5819.zip |
py-svgutils: new package (#26437)
-rw-r--r-- | var/spack/repos/builtin/packages/py-svgutils/package.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-svgutils/package.py b/var/spack/repos/builtin/packages/py-svgutils/package.py new file mode 100644 index 0000000000..62c1aff931 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-svgutils/package.py @@ -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')) |