summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-routes/package.py
blob: 90eb136850d0f6dfbbf1ef4108c2ebddbb53d52c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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 PyRoutes(PythonPackage):
    """Routing Recognition and Generation Tools"""

    homepage = "https://routes.readthedocs.io/"
    pypi = "routes/Routes-2.5.1.tar.gz"

    license("MIT")

    version("2.5.1", sha256="b6346459a15f0cbab01a45a90c3d25caf980d4733d628b4cc1952b865125d053")

    depends_on("py-setuptools", type="build")

    depends_on("py-six", type=("build", "run"))
    depends_on("py-repoze-lru@0.3:", type=("build", "run"))