diff options
author | Sajid Ali <30510036+s-sajid-ali@users.noreply.github.com> | 2020-01-13 06:45:47 -0600 |
---|---|---|
committer | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2020-01-13 13:45:47 +0100 |
commit | 8917d58e7af5a82effe75842c655c2285789eee9 (patch) | |
tree | c27843c40c3bb1d15bd6f916a4f300e73e942a37 | |
parent | 9c4479624c73a35672c6d91e76e482cc2a96b5b5 (diff) | |
download | spack-8917d58e7af5a82effe75842c655c2285789eee9.tar.gz spack-8917d58e7af5a82effe75842c655c2285789eee9.tar.bz2 spack-8917d58e7af5a82effe75842c655c2285789eee9.tar.xz spack-8917d58e7af5a82effe75842c655c2285789eee9.zip |
syned: new package at develop (#14468)
-rw-r--r-- | var/spack/repos/builtin/packages/py-syned/package.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-syned/package.py b/var/spack/repos/builtin/packages/py-syned/package.py new file mode 100644 index 0000000000..12c1a98343 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-syned/package.py @@ -0,0 +1,22 @@ +# 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 PySyned(PythonPackage): + """A python library to define the components of a synchrotron beamline and + their positions. They can be read/write to json files. It is used by OASYS + as a common tool to define sources and optical systems that are then + exported to the different add-ons.""" + + homepage = "https://github.com/oasys-kit/syned" + git = "https://github.com/oasys-kit/syned.git" + + version('develop', branch='master') + + depends_on('py-numpy') + depends_on('py-scipy') + depends_on('py-setuptools') |