summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-svgpathtools/package.py
blob: a3500849cf9e96fb099a349c3fe15799d4ef9bee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2013-2023 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.package import *


class PySvgpathtools(PythonPackage):
    """A collection of tools for manipulating and analyzing SVG Path objects
    and Bezier curves."""

    pypi = "svgpathtools/svgpathtools-1.3.3.tar.gz"

    license("MIT")

    version("1.3.3", sha256="e4b3784ae41b725fbce6a33a8981210967b16d0b557cb5d98c0ed0c81f0f89b9")

    depends_on("py-setuptools", type="build")
    depends_on("py-numpy", type=("build", "run"))
    depends_on("py-svgwrite", type=("build", "run"))