summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-doxypy/package.py
blob: 849246bd2a88fadc665e43eac164c591eb1a0c67 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright 2013-2022 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 PyDoxypy(PythonPackage):
    """doxypy is an input filter for Doxygen."""

    pypi = "doxypy/doxypy-0.3.tar.gz"

    version("0.3", sha256="55d621b0edebd9e2a58a266c0a1d086fc9892de8e07e04dfbb93880a7ae91f00")

    depends_on("python@:2.8", type=("build", "run"))
    # pip silently replaces distutils with setuptools
    depends_on("py-setuptools", type="build")