summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Meyers <meyersbs@users.noreply.github.com>2023-05-18 16:37:43 -0400
committerGitHub <noreply@github.com>2023-05-18 15:37:43 -0500
commit3ff2fb69af68f7399859c64d2d13b4b335e17485 (patch)
tree097b28b8438c84302e95fad6089ba3c8129cc220
parente3024b1bcba240be5bc04de62c4e406b37dfcf65 (diff)
downloadspack-3ff2fb69af68f7399859c64d2d13b4b335e17485.tar.gz
spack-3ff2fb69af68f7399859c64d2d13b4b335e17485.tar.bz2
spack-3ff2fb69af68f7399859c64d2d13b4b335e17485.tar.xz
spack-3ff2fb69af68f7399859c64d2d13b4b335e17485.zip
New package py-scikit-tensor-py3 (#37706)
-rw-r--r--var/spack/repos/builtin/packages/py-scikit-tensor-py3/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-scikit-tensor-py3/package.py b/var/spack/repos/builtin/packages/py-scikit-tensor-py3/package.py
new file mode 100644
index 0000000000..24811637c0
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-scikit-tensor-py3/package.py
@@ -0,0 +1,22 @@
+# Copyright 2013-2023 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 PyScikitTensorPy3(PythonPackage):
+ """A python module for multilinear algebra and tensor factorizations."""
+
+ homepage = "http://github.com/evertrol/scikit-tensor-py3"
+ pypi = "scikit-tensor-py3/scikit-tensor-py3-0.4.1.tar.gz"
+
+ maintainers("meyersbs")
+
+ version("0.4.1", sha256="b45de97ebd57e0213f54e891bf9a0549957eb2387f4df9f3dc3f7a50f8818b0a")
+
+ depends_on("python@3.5:", type=("build", "run"))
+ depends_on("py-setuptools", type="build")
+ depends_on("py-numpy@1.16:1.16", type=("build", "run"))
+ depends_on("py-scipy@1.3:1.3", type=("build", "run"))