diff options
author | Christopher Christofi <77968333+ChristopherChristofi@users.noreply.github.com> | 2024-03-25 23:11:28 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-25 16:11:28 -0700 |
commit | 6eaac2270d631499aabe8d4d1aabaa49aba23dc9 (patch) | |
tree | 6472a8c6f1115260f9b39bb6f501fbd991d7fc8c | |
parent | a9f3f6c007fd626a926334ef246a75c0fc396151 (diff) | |
download | spack-6eaac2270d631499aabe8d4d1aabaa49aba23dc9.tar.gz spack-6eaac2270d631499aabe8d4d1aabaa49aba23dc9.tar.bz2 spack-6eaac2270d631499aabe8d4d1aabaa49aba23dc9.tar.xz spack-6eaac2270d631499aabe8d4d1aabaa49aba23dc9.zip |
py-trx-python: add new package with version 0.2.9 (#43333)
-rw-r--r-- | var/spack/repos/builtin/packages/py-trx-python/package.py | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-trx-python/package.py b/var/spack/repos/builtin/packages/py-trx-python/package.py new file mode 100644 index 0000000000..9f7c09fcb6 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-trx-python/package.py @@ -0,0 +1,28 @@ +# 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 PyTrxPython(PythonPackage): + """Experiments with new file format for tractography.""" + + homepage = "https://tee-ar-ex.github.io/trx-python/" + pypi = "trx-python/trx-python-0.2.9.tar.gz" + + maintainers("ChristopherChristofi") + + license("BSD-2-Clause") + + version("0.2.9", sha256="16b4104d7c991879c601f60e8d587decac50ce60388aae8d0c754a92136d1caf") + + depends_on("py-setuptools@42.0:", type="build") + depends_on("py-setuptools-scm@3.4:+toml", type=("build", "run")) + depends_on("py-setuptools-scm-git-archive", type="build") + depends_on("py-packaging@19.0:", type="build") + depends_on("py-cython@0.29:", type="build") + depends_on("py-deepdiff", type=("build", "run")) + depends_on("py-nibabel@5:", type=("build", "run")) + depends_on("py-numpy@1.22:", type=("build", "run")) |