summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pep517/package.py
blob: 4bf86e20e4c76235cec49ef0983ac577493ed257 (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-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 import *


class PyPep517(PythonPackage):
    """Wrappers to build Python packages using PEP 517 hooks."""

    homepage = "https://github.com/pypa/pep517"
    pypi     = "pep517/pep517-0.12.0.tar.gz"

    version('0.12.0', sha256='931378d93d11b298cf511dd634cf5ea4cb249a28ef84160b3247ee9afb4e8ab0')

    depends_on('py-flit-core@2:3', type='build')
    depends_on('py-toml', when='^python@:3.5', type=('build', 'run'))
    depends_on('py-tomli@1.1:', when='^python@3.6:', type=('build', 'run'))
    depends_on('py-importlib-metadata', when='^python@:3.7', type=('build', 'run'))
    depends_on('py-zipp', when='^python@:3.7', type=('build', 'run'))