summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-azure-functions-devops-build/package.py
blob: e49c57c1428fc772c8429147a3cc23c777861b21 (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
24
# 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 PyAzureFunctionsDevopsBuild(PythonPackage):
    """Python package for integrating Azure Functions with Azure DevOps.
    Specifically made for the Azure CLI."""

    homepage = "https://github.com/Azure/azure-functions-devops-build"
    pypi = "azure-functions-devops-build/azure-functions-devops-build-0.0.22.tar.gz"

    license("MIT")

    version("0.0.22", sha256="c6341abda6098813f8fa625acd1e925410a17a8a1c7aaabdf975bb7cecb14edf")

    depends_on("py-setuptools", type="build")
    depends_on("py-msrest", type=("build", "run"))
    depends_on("py-vsts", type=("build", "run"))
    depends_on("py-jinja2", type=("build", "run"))