From d1ae087960c51eedbcb194257ab242c2087ec411 Mon Sep 17 00:00:00 2001 From: vvolkl Date: Fri, 2 Oct 2020 17:59:47 +0200 Subject: add py-hepunits and py-particle (#19030) Co-authored-by: Adam J. Stewart [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 Update var/spack/repos/builtin/packages/py-particle/package.py Co-authored-by: Adam J. Stewart Update var/spack/repos/builtin/packages/py-particle/package.py Co-authored-by: Adam J. Stewart Co-authored-by: Adam J. Stewart --- .../repos/builtin/packages/py-hepunits/package.py | 24 +++++++++++++++++ .../repos/builtin/packages/py-particle/package.py | 31 ++++++++++++++++++++++ 2 files changed, 55 insertions(+) create mode 100644 var/spack/repos/builtin/packages/py-hepunits/package.py create mode 100644 var/spack/repos/builtin/packages/py-particle/package.py diff --git a/var/spack/repos/builtin/packages/py-hepunits/package.py b/var/spack/repos/builtin/packages/py-hepunits/package.py new file mode 100644 index 0000000000..d30fb48126 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-hepunits/package.py @@ -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') diff --git a/var/spack/repos/builtin/packages/py-particle/package.py b/var/spack/repos/builtin/packages/py-particle/package.py new file mode 100644 index 0000000000..b8b03b21d0 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-particle/package.py @@ -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')) -- cgit v1.2.3-70-g09d2