diff options
author | George Young <A-N-Other@users.noreply.github.com> | 2023-06-11 17:16:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-11 11:16:33 -0500 |
commit | 433b44403f4ea82f5d50f8a6dddf24a907d0dd73 (patch) | |
tree | bc1c7d3bd5dc9393016efdd1ee0965aa96607907 | |
parent | fa2e1c0653683ff2a9d45dc2655ed128ca55ce50 (diff) | |
download | spack-433b44403f4ea82f5d50f8a6dddf24a907d0dd73.tar.gz spack-433b44403f4ea82f5d50f8a6dddf24a907d0dd73.tar.bz2 spack-433b44403f4ea82f5d50f8a6dddf24a907d0dd73.tar.xz spack-433b44403f4ea82f5d50f8a6dddf24a907d0dd73.zip |
py-pybktree: new package (#38209)
* py-pykbtree: new package
* py-pybktree: new package
---------
Co-authored-by: LMS Bioinformatics <bioinformatics@lms.mrc.ac.uk>
-rw-r--r-- | var/spack/repos/builtin/packages/py-pybktree/package.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pybktree/package.py b/var/spack/repos/builtin/packages/py-pybktree/package.py new file mode 100644 index 0000000000..c23fb2aabd --- /dev/null +++ b/var/spack/repos/builtin/packages/py-pybktree/package.py @@ -0,0 +1,17 @@ +# Copyright 2013-2023 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 PyPybktree(PythonPackage): + """pybktree: pure-Python BK-tree data structure to allow fast querying of close matches""" + + homepage = "https://github.com/benhoyt/pybktree" + pypi = "pybktree/pybktree-1.1.tar.gz" + + version("1.1", sha256="eec0037cdd3d7553e6d72435a4379bede64be17c6712f149e485169638154d2b") + + depends_on("py-setuptools", type="build") |