summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-whey/package.py
blob: f3312b29a110fd1673656c5840e4f08851b77390 (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
25
26
27
28
29
30
31
32
33
34
# 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 PyWhey(PythonPackage):
    """A simple Python wheel builder for simple projects."""

    homepage = "https://github.com/repo-helper/whey"
    pypi = "whey/whey-0.0.24.tar.gz"

    license("MIT")

    version("0.0.24", sha256="411905d85aa8aa239733818894e08dc20b682f0a3614f942aa35b430db568aa2")

    depends_on("py-wheel@0.34.2", type="build")
    depends_on("py-setuptools@40.6:", type="build")

    conflicts("^py-setuptools@61")

    depends_on("py-click@7.1.2:", type=("build", "run"))
    depends_on("py-consolekit@1.4.1:", type=("build", "run"))
    depends_on("py-dist-meta@0.1:", type=("build", "run"))
    depends_on("py-dom-toml@0.4:", type=("build", "run"))
    depends_on("py-domdf-python-tools@2.8:", type=("build", "run"))
    depends_on("py-handy-archives@0.1:", type=("build", "run"))
    depends_on("py-natsort@7.1.1:", type=("build", "run"))
    depends_on("py-packaging@20.9:", type=("build", "run"))
    depends_on("py-pyproject-parser@0.6:", type=("build", "run"))
    depends_on("py-shippinglabel@0.16:", type=("build", "run"))