summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-hep-ml/package.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-hep-ml/package.py b/var/spack/repos/builtin/packages/py-hep-ml/package.py
new file mode 100644
index 0000000000..903e3e9fce
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-hep-ml/package.py
@@ -0,0 +1,23 @@
+# Copyright 2013-2021 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 PyHepMl(PythonPackage):
+ """Machine Learning for High Energy Physics"""
+
+ homepage = "https://github.com/arogozhnikov/hep_ml"
+ pypi = "hep_ml/hep_ml-0.7.0.tar.gz"
+
+ version('0.7.0', sha256='0402037064d78f5723106b385ad5f20df8f67cb312c57cb4ce3839c5616f328e')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('py-numpy@1.9:', type=('build', 'run'))
+ depends_on('py-scipy@0.15.0:', type=('build', 'run'))
+ depends_on('py-pandas@0.14.0:', type=('build', 'run'))
+ depends_on('py-scikit-learn@0.19:', type=('build', 'run'))
+ depends_on('py-theano@1.0.2:', type=('build', 'run'))
+ depends_on('py-six', type=('build', 'run'))