summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-auxlib/package.py
blob: 827f87f995e3299810feeff15fc3e246afcd4c5b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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 PyAuxlib(PythonPackage):
    """Auxlib is an auxiliary library to the python standard library."""

    homepage = "https://github.com/kalefranz/auxlib"
    pypi = "auxlib/auxlib-0.0.43.tar.gz"

    license("ISC")

    version("0.0.43", sha256="0f175637e96a090a785767ce28483cf1aeec316a19afce9b2fbd113e1122786a")

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