blob: 16aa0b830128c63600bcd9e14fffc191393f69a0 (
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 PySvgpath(PythonPackage):
"""svg.path is a collection of objects that implement the different path
commands in SVG, and a parser for SVG path definitions.
"""
homepage = "https://github.com/regebro/svg.path"
pypi = "svg.path/svg.path-4.1.tar.gz"
git = "https://github.com/regebro/svg.path.git"
license("MIT")
version("6.2", sha256="1a2159f9db898df93c4637cfd3ccaf7da1fd073f59fa9a5950c73e46d4aa1aca")
version("4.1", sha256="7e6847ba690ff620e20f152818d52e1685b993aacbc41b321f8fee3d1cb427db")
depends_on("py-setuptools", type="build")
|