diff options
author | Jen Herting <jen@herting.cc> | 2022-10-08 13:37:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-08 11:37:50 -0600 |
commit | 3146f9309cb7887f4811722b792668f62f29d27e (patch) | |
tree | a695954d8e20e34a11433836817bd2dd4a486413 | |
parent | c1440aaa17d33849e3095ebab31ede721afb0438 (diff) | |
download | spack-3146f9309cb7887f4811722b792668f62f29d27e.tar.gz spack-3146f9309cb7887f4811722b792668f62f29d27e.tar.bz2 spack-3146f9309cb7887f4811722b792668f62f29d27e.tar.xz spack-3146f9309cb7887f4811722b792668f62f29d27e.zip |
New package: py-qudida (#33115)
* [py-qudida] New package
* [@spackbot] updating style on behalf of qwertos
Co-authored-by: qwertos <qwertos@users.noreply.github.com>
-rw-r--r-- | var/spack/repos/builtin/packages/py-qudida/package.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-qudida/package.py b/var/spack/repos/builtin/packages/py-qudida/package.py new file mode 100644 index 0000000000..b97f5b7df9 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-qudida/package.py @@ -0,0 +1,24 @@ +# 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 PyQudida(PythonPackage): + """QuDiDA is a micro library for very naive though quick + pixel level image domain adaptation via scikit-learn + transformers.""" + + homepage = "https://github.com/arsenyinfo/qudida" + pypi = "qudida/qudida-0.0.4.tar.gz" + + version("0.0.4", sha256="db198e2887ab0c9aa0023e565afbff41dfb76b361f85fd5e13f780d75ba18cc8") + + depends_on("python@3.5:", type=("build", "run")) + depends_on("py-setuptools", type="build") + depends_on("py-numpy@0.18:", type=("build", "run")) + depends_on("py-scikit-learn@0.19.1:", type=("build", "run")) + depends_on("py-typing-extensions", type=("build", "run")) + depends_on("opencv@4.0.1:+python3", type=("build", "run")) |