add py-hepunits and py-particle (#19030)
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> [py-particle] format [py-particle] switch to pypi downloads [py-particle] specify dependencies in more details [py-particle] format Update var/spack/repos/builtin/packages/py-particle/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> Update var/spack/repos/builtin/packages/py-particle/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> Update var/spack/repos/builtin/packages/py-particle/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
04f48034fb
commit
d1ae087960
24
var/spack/repos/builtin/packages/py-hepunits/package.py
Normal file
24
var/spack/repos/builtin/packages/py-hepunits/package.py
Normal file
@ -0,0 +1,24 @@
|
||||
# Copyright 2013-2020 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 PyHepunits(PythonPackage):
|
||||
"""Units and constants in the HEP system of units."""
|
||||
|
||||
git = "https://github.com/scikit-hep/hepunits.git"
|
||||
url = "https://pypi.io/packages/source/h/hepunits/hepunits-1.2.1.tar.gz"
|
||||
homepage = "https://github.com/scikit-hep/hepunits"
|
||||
|
||||
maintainers = ['vvolkl']
|
||||
|
||||
version('master', branch='master')
|
||||
version('1.2.1', sha256='b05b0dda32bf797806d506d7508d4eb23b78f34d67bbba9348a2b4a9712666fa')
|
||||
|
||||
depends_on('python@2.7:2.8,3.5:', type=('build', 'run'))
|
||||
depends_on('py-setuptools', type='build')
|
||||
depends_on('py-setuptools-scm', type='build')
|
||||
depends_on('py-toml', type='build')
|
31
var/spack/repos/builtin/packages/py-particle/package.py
Normal file
31
var/spack/repos/builtin/packages/py-particle/package.py
Normal file
@ -0,0 +1,31 @@
|
||||
# Copyright 2013-2020 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 PyParticle(PythonPackage):
|
||||
"""Particle provides a pythonic interface to the Particle Data Group (PDG)
|
||||
particle data tables and particle identification codes, with extended
|
||||
particle information and extra goodies."""
|
||||
|
||||
git = "https://github.com/scikit-hep/particle.git"
|
||||
url = "https://pypi.io/packages/source/p/particle/particle-0.11.0.tar.gz"
|
||||
homepage = "https://github.com/scikit-hep/particle"
|
||||
|
||||
maintainers = ['vvolkl']
|
||||
|
||||
version('master', branch='master')
|
||||
version('0.11.0', sha256='e90dc36c8b7d7431bd14ee5a28486d28b6c0708555845d1d7bdf59a165405f12')
|
||||
|
||||
depends_on('python@2.7:2.8,3.5:', type=('build', 'run'))
|
||||
depends_on('py-setuptools', type='build')
|
||||
|
||||
depends_on('py-attrs@19.2.0:', type=('build', 'run'))
|
||||
depends_on('py-hepunits@1.2.0:', type=('build', 'run'))
|
||||
depends_on('py-importlib-resources@1.0:', when='^python@:3.6', type=('build', 'run'))
|
||||
|
||||
depends_on('py-enum34@1.1:', when='^python@:3.3', type=('build', 'run'))
|
||||
depends_on("py-typing@3.7:", when='^python@:3.4', type=('build', 'run'))
|
Loading…
Reference in New Issue
Block a user