first build of py-doe2 a fork of py-doe (#26235)

Co-authored-by: Sid Pendelberry <sid@rit.edu>
This commit is contained in:
Jen Herting 2021-09-26 02:12:40 -04:00 committed by GitHub
parent b4b3b256bc
commit 56858eb34e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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'))