summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorJen Herting <jen@herting.cc>2021-09-26 02:12:40 -0400
committerGitHub <noreply@github.com>2021-09-26 08:12:40 +0200
commit56858eb34e9e6803349c80de45dd2084b3486999 (patch)
tree7e2e53ea7422f56302f8907600b90f631c485c77 /var
parentb4b3b256bc90e904f50d934c355f1b6105d49712 (diff)
downloadspack-56858eb34e9e6803349c80de45dd2084b3486999.tar.gz
spack-56858eb34e9e6803349c80de45dd2084b3486999.tar.bz2
spack-56858eb34e9e6803349c80de45dd2084b3486999.tar.xz
spack-56858eb34e9e6803349c80de45dd2084b3486999.zip
first build of py-doe2 a fork of py-doe (#26235)
Co-authored-by: Sid Pendelberry <sid@rit.edu>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-pydoe2/package.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pydoe2/package.py b/var/spack/repos/builtin/packages/py-pydoe2/package.py
new file mode 100644
index 0000000000..3995a56515
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-pydoe2/package.py
@@ -0,0 +1,21 @@
+# 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 PyPydoe2(PythonPackage):
+ """pyDOE2 is a fork of the pyDOE package that is designed to help the
+ scientist, engineer, statistician, etc., to construct appropriate
+ experimental designs."""
+
+ homepage = "https://github.com/clicumu/pyDOE2"
+ pypi = "pyDOE2/pyDOE2-1.3.0.tar.gz"
+
+ version('1.3.0', sha256='5492b0f984af52da3af20b1cd61deb21b067c858e65243ec3ba573375f0d6720')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('py-numpy', type=('build', 'run'))
+ depends_on('py-scipy', type=('build', 'run'))