py-setupmeta: add new package (#27327)
* py-setupmeta: add new package * Update var/spack/repos/builtin/packages/py-setupmeta/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
This commit is contained in:
parent
5e0208a710
commit
8411cc934d
1 changed files with 18 additions and 0 deletions
18
var/spack/repos/builtin/packages/py-setupmeta/package.py
Normal file
18
var/spack/repos/builtin/packages/py-setupmeta/package.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
# Copyright 2013-2021 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 PySetupmeta(PythonPackage):
|
||||
"""Simplify your setup.py."""
|
||||
|
||||
homepage = "https://github.com/codrsquad/setupmeta"
|
||||
pypi = "setupmeta/setupmeta-3.3.0.tar.gz"
|
||||
|
||||
version('3.3.0', sha256='32914af4eeffb8bf1bd45057254d9dff4d16cb7ae857141e07698f7ac19dc960')
|
||||
|
||||
depends_on('python@2.7:', type=('build', 'run'))
|
||||
depends_on('py-setuptools', type=('build', 'run'))
|
Loading…
Reference in a new issue