py-umap-learn: add new package (#32562)

Co-authored-by: James A Zilberman <jazrc@rit.edu>
Co-authored-by: qwertos <qwertos@users.noreply.github.com>
This commit is contained in:
Jen Herting 2022-09-09 05:05:49 -04:00 committed by GitHub
parent 0d18c32bca
commit 59602f790e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,25 @@
# 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.package import *
class PyUmapLearn(PythonPackage):
"""Uniform Manifold Approximation and Projection (UMAP) is a dimension
reduction technique that can be used for visualisation similarly to t-SNE,
but also for general non-linear dimension reduction."""
homepage = "https://github.com/lmcinnes/umap"
pypi = "umap-learn/umap-learn-0.5.3.tar.gz"
version("0.5.3", sha256="dbd57cb181c2b66d238acb5635697526bf24c798082daed0cf9b87f6a3a6c0c7")
depends_on("py-setuptools", type="build")
depends_on("py-numpy@1.17:", type=("build", "run"))
depends_on("py-scikit-learn@0.22:", type=("build", "run"))
depends_on("py-scipy@1.0:", type=("build", "run"))
depends_on("py-numba@0.49:", type=("build", "run"))
depends_on("py-pynndescent@0.5:", type=("build", "run"))
depends_on("py-tqdm", type=("build", "run"))