summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-uri-template/package.py
blob: 6ac68b499910d1482e7b7b64fb7a96e086089411 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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 PyUriTemplate(PythonPackage):
    """RFC 6570 URI Template Processor."""

    homepage = "https://github.com/plinss/uri_template"
    pypi = "uri_template/uri_template-1.2.0.tar.gz"

    license("MIT")

    version("1.2.0", sha256="934e4d09d108b70eb8a24410af8615294d09d279ce0e7cbcdaef1bd21f932b06")

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