New package: py-pydoe (#26233)

Co-authored-by: Sid Pendelberry <sid@rit.edu>
This commit is contained in:
Jen Herting 2021-09-25 08:34:35 -04:00 committed by GitHub
parent ff511e090a
commit 3f7d6763e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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