summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-namex/package.py
blob: de93e1e98c874881962483a003292e524a1eb3b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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 PyNamex(PythonPackage):
    """A simple utility to separate the implementation of your Python package
    and its public API surface."""

    pypi = "namex/namex-0.0.7.tar.gz"

    license("Apache-2.0")

    version("0.0.7", sha256="84ba65bc4d22bd909e3d26bf2ffb4b9529b608cb3f9a4336f776b04204ced69b")

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