summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-catkin-pkg/package.py
blob: a417c3bd51f02d2e2151bf86a509c8e66cbf4543 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2013-2024 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 PyCatkinPkg(PythonPackage):
    """Library for retrieving information about catkin packages."""

    homepage = "https://wiki.ros.org/catkin_pkg"
    pypi = "catkin-pkg/catkin_pkg-0.4.23.tar.gz"

    version("0.4.23", sha256="28ee181cca827c0aabf9397351f58a97e1475ca5ac7c106a5916e3ee191cd3d0")

    depends_on("py-setuptools", type=("build", "run"))
    depends_on("py-docutils", type=("build", "run"))
    depends_on("py-python-dateutil", type=("build", "run"))
    depends_on("py-pyparsing", type=("build", "run"))