summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-svgutils/package.py18
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'))