py-fracridge: add new package (#30739)
This commit is contained in:
parent
fb2730d87f
commit
23960ed623
1 changed files with 23 additions and 0 deletions
23
var/spack/repos/builtin/packages/py-fracridge/package.py
Normal file
23
var/spack/repos/builtin/packages/py-fracridge/package.py
Normal file
|
@ -0,0 +1,23 @@
|
|||
# Copyright 2013-2022 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 PyFracridge(PythonPackage):
|
||||
"""Fractional Ridge Regression."""
|
||||
|
||||
homepage = "https://nrdg.github.io/fracridge"
|
||||
pypi = "fracridge/fracridge-1.4.3.tar.gz"
|
||||
|
||||
version('1.4.3', sha256='0446d486f00fea02110567fd9df14b8b2a7b155dc72700af9201873ea11c27cc')
|
||||
|
||||
depends_on('python@3.6:', type=('build', 'run'))
|
||||
|
||||
depends_on('py-setuptools@42:', type='build')
|
||||
depends_on('py-setuptools-scm+toml@3.4:', type=('build', 'run'))
|
||||
depends_on('py-scikit-learn@0.23.2', type=('build', 'run'))
|
||||
depends_on('py-numba', type=('build', 'run'))
|
||||
depends_on('pil', type=('build', 'run'))
|
Loading…
Reference in a new issue