new builtin package: py-simpletraj (#42460)
* new builtin package: py-simpletraj * long line splitted in two for the style test * removed trailing whitespace for the style test
This commit is contained in:
parent
2c67571726
commit
f0e49a54c0
1 changed files with 23 additions and 0 deletions
23
var/spack/repos/builtin/packages/py-simpletraj/package.py
Normal file
23
var/spack/repos/builtin/packages/py-simpletraj/package.py
Normal file
|
@ -0,0 +1,23 @@
|
|||
# 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 PySimpletraj(PythonPackage):
|
||||
"""Lightweight coordinate-only trajectory reader based on code
|
||||
from GROMACS, MDAnalysis and VMD."""
|
||||
|
||||
pypi = "simpletraj/simpletraj-0.5.tar.gz"
|
||||
|
||||
maintainers("d-beltran")
|
||||
|
||||
# Versions
|
||||
version("0.5", sha256="860ccba82e7a6085ef1cbff74eb2db53df65fd58edabae3c45b8c45a219b8a3b")
|
||||
|
||||
# Dependencies
|
||||
depends_on("py-setuptools", type="build")
|
||||
depends_on("python@3.8:", type=("build", "run"))
|
||||
depends_on("py-numpy", type=("build", "run"))
|
Loading…
Reference in a new issue