21 lines
677 B
Python
21 lines
677 B
Python
# 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.8", sha256="32a50f6c565c0bb10aa76298c959507abdc0e850efe085dc38f3440fcb3aa90b")
|
|
version("0.0.7", sha256="84ba65bc4d22bd909e3d26bf2ffb4b9529b608cb3f9a4336f776b04204ced69b")
|
|
|
|
depends_on("py-setuptools", type="build")
|