
* Update URL parsing regexes and tests * Get rid of no longer used README * Merge py-udunits and py-cf-units * netcdf -> netcdf-c * setup_environment -> setup_*_environment * Fix doc tests * Few last minute fixes * Simplify prefix removal copypasta
21 lines
793 B
Python
21 lines
793 B
Python
# Copyright 2013-2019 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 PyHpccm(PythonPackage):
|
|
"""HPC Container Maker (HPCCM - pronounced H-P-see-M) is an open source
|
|
tool to make it easier to generate container specification files."""
|
|
|
|
homepage = "https://github.com/NVIDIA/hpc-container-maker"
|
|
url = "https://pypi.io/packages/source/h/hpccm/hpccm-19.2.0.tar.gz"
|
|
|
|
version('19.2.0', sha256='c60eec914a802b0a76596cfd5fdf7122d3f8665fcef06ef928323f5dfb5219a6')
|
|
|
|
depends_on('py-setuptools', type=('build', 'run'))
|
|
depends_on('py-enum34', type=('build', 'run'))
|
|
depends_on('py-six', type=('build', 'run'))
|