diff options
author | Jen Herting <jen@herting.cc> | 2021-09-25 08:34:35 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-25 14:34:35 +0200 |
commit | 3f7d6763e01cf20b6a8d80bd09a64ed9f495fe79 (patch) | |
tree | 23a760322503db3d181057983598a2e1c14fe700 | |
parent | ff511e090a076ae1c2eac6253f160a1dea249588 (diff) | |
download | spack-3f7d6763e01cf20b6a8d80bd09a64ed9f495fe79.tar.gz spack-3f7d6763e01cf20b6a8d80bd09a64ed9f495fe79.tar.bz2 spack-3f7d6763e01cf20b6a8d80bd09a64ed9f495fe79.tar.xz spack-3f7d6763e01cf20b6a8d80bd09a64ed9f495fe79.zip |
New package: py-pydoe (#26233)
Co-authored-by: Sid Pendelberry <sid@rit.edu>
-rw-r--r-- | var/spack/repos/builtin/packages/py-pydoe/package.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pydoe/package.py b/var/spack/repos/builtin/packages/py-pydoe/package.py new file mode 100644 index 0000000000..9d950ee37a --- /dev/null +++ b/var/spack/repos/builtin/packages/py-pydoe/package.py @@ -0,0 +1,20 @@ +# 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 PyPydoe(PythonPackage): + """The pyDOE package is designed to help the scientist, engineer, + statistician, etc., to construct appropriate experimental designs""" + + homepage = "https://github.com/tisimst/pyDOE" + pypi = "pyDOE/pyDOE-0.3.8.zip" + + version('0.3.8', sha256='cbd6f14ae26d3c9f736013205f53ea1191add4567033c3ee77b7dd356566c4b6') + + depends_on('py-setuptools', type='build') + depends_on('py-numpy', type=('build', 'run')) + depends_on('py-scipy', type=('build', 'run')) |