summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-matminer/package.py
diff options
context:
space:
mode:
authorBenjamin Meyers <meyersbs@users.noreply.github.com>2023-03-14 07:27:51 -0400
committerGitHub <noreply@github.com>2023-03-14 07:27:51 -0400
commit853b964947de22d3f60d2439e305916026b70806 (patch)
tree9db8fd30ae5fc753b31e0c1a20aed9eef52a4b0c /var/spack/repos/builtin/packages/py-matminer/package.py
parentf7da7db9b2cf6f4bab08cd9ce1c7758e6549144e (diff)
downloadspack-853b964947de22d3f60d2439e305916026b70806.tar.gz
spack-853b964947de22d3f60d2439e305916026b70806.tar.bz2
spack-853b964947de22d3f60d2439e305916026b70806.tar.xz
spack-853b964947de22d3f60d2439e305916026b70806.zip
New packages: py-robocrys, py-matminer, py-pubchempy (#35941)
Co-authored-by: Bernhard Kaindl <43588962+bernhardkaindl@users.noreply.github.com>
Diffstat (limited to 'var/spack/repos/builtin/packages/py-matminer/package.py')
-rw-r--r--var/spack/repos/builtin/packages/py-matminer/package.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-matminer/package.py b/var/spack/repos/builtin/packages/py-matminer/package.py
new file mode 100644
index 0000000000..063a99ed1c
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-matminer/package.py
@@ -0,0 +1,30 @@
+# 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 PyMatminer(PythonPackage):
+ """Matminer is a library for performing data mining in the field of
+ materials science."""
+
+ homepage = "https://github.com/hackingmaterials/matminer"
+ pypi = "matminer/matminer-0.8.0.tar.gz"
+
+ maintainers("meyersbs")
+
+ version("0.8.0", sha256="4bfc3dd6314720df6755cb1c38cad65995f9d820575296fcc67313a0a40c5747")
+
+ depends_on("py-setuptools@43.0.0:", type="build")
+ depends_on("py-numpy@1.20.1:", type=("build", "run"))
+ depends_on("py-requests", type=("build", "run"))
+ depends_on("py-pandas", type=("build", "run"))
+ depends_on("py-tqdm", type=("build", "run"))
+ depends_on("py-pymongo", type=("build", "run"))
+ depends_on("py-future", type=("build", "run"))
+ depends_on("py-scikit-learn", type=("build", "run"))
+ depends_on("py-sympy", type=("build", "run"))
+ depends_on("py-monty", type=("build", "run"))
+ depends_on("py-pymatgen", type=("build", "run"))