91 lines
3.4 KiB
Python
91 lines
3.4 KiB
Python
# Copyright Spack Project Developers. See COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack.package import *
|
|
|
|
|
|
class PyNanobind(PythonPackage):
|
|
"""nanobind is a small binding library that exposes C++ types in
|
|
Python and vice versa. It is reminiscent of Boost.Python and pybind11
|
|
and uses near-identical syntax. In contrast to these existing tools,
|
|
nanobind is more efficient: bindings compile in a shorter amount of time,
|
|
produce smaller binaries, and have better runtime performance.
|
|
"""
|
|
|
|
homepage = "https://nanobind.readthedocs.io"
|
|
url = "https://github.com/wjakob/nanobind/archive/refs/tags/v1.2.0.tar.gz"
|
|
git = "https://github.com/wjakob/nanobind.git"
|
|
|
|
maintainers("chrisrichardson", "garth-wells")
|
|
|
|
license("BSD-3-Clause")
|
|
|
|
version("master", branch="master", submodules=True)
|
|
version(
|
|
"2.7.0", tag="v2.7.0", commit="44ad9a9e5729abda24ef8dc9d76233d801e651e9", submodules=True
|
|
)
|
|
version(
|
|
"2.6.1", tag="v2.6.1", commit="9b3afa9dbdc23641daf26fadef7743e7127ff92f", submodules=True
|
|
)
|
|
version(
|
|
"2.5.0", tag="v2.5.0", commit="4ccbe6e005fc017652312305f280742da49d3dd5", submodules=True
|
|
)
|
|
version(
|
|
"2.4.0", tag="v2.4.0", commit="0f9ce749b257fdfe701edb3cf6f7027ba029434a", submodules=True
|
|
)
|
|
version(
|
|
"2.2.0", tag="v2.2.0", commit="784efa2a0358a4dc5432c74f5685ee026e20f2b6", submodules=True
|
|
)
|
|
version(
|
|
"2.1.0", tag="v2.1.0", commit="9641bb7151f04120013b812789b3ebdfa7e7324f", submodules=True
|
|
)
|
|
version(
|
|
"2.0.0", tag="v2.0.0", commit="8d7f1ee0621c17fa370b704b2100ffa0243d5bfb", submodules=True
|
|
)
|
|
version(
|
|
"1.9.2", tag="v1.9.2", commit="80a30c8efb093b14f0e744bc7f6a9ef34beb3f7f", submodules=True
|
|
)
|
|
version(
|
|
"1.8.0", tag="v1.8.0", commit="1a309ba444a47e081dc6213d72345a2fbbd20795", submodules=True
|
|
)
|
|
version(
|
|
"1.7.0", tag="v1.7.0", commit="555ec7595c89c60ce7cf53e803bc226dc4899abb", submodules=True
|
|
)
|
|
version(
|
|
"1.6.2", tag="v1.6.2", commit="cc5ac7e61def198db2a8b65c6d630343987a9f1d", submodules=True
|
|
)
|
|
version(
|
|
"1.5.2", tag="v1.5.2", commit="b0e24d5b0ab0d518317d6b263a257ae72d4d29a2", submodules=True
|
|
)
|
|
version(
|
|
"1.5.1", tag="v1.5.1", commit="ec6168d06dbf2ab94c31858223bd1d7617222706", submodules=True
|
|
)
|
|
version(
|
|
"1.5.0", tag="v1.5.0", commit="e85a51049db500383808aaa4a77306ff37d96131", submodules=True
|
|
)
|
|
version(
|
|
"1.4.0", tag="v1.4.0", commit="05cba0ef85ba2bb68aa115af4b74c30aa2aa7bec", submodules=True
|
|
)
|
|
version(
|
|
"1.2.0", tag="v1.2.0", commit="ec9350b805d2fe568f65746fd69225eedc5e37ae", submodules=True
|
|
)
|
|
|
|
depends_on("cxx", type="build") # generated
|
|
|
|
depends_on("python@3.8:", type=("build", "run"))
|
|
|
|
depends_on("py-setuptools@42:", when="@:2.0", type="build")
|
|
depends_on("py-scikit-build", when="@:2.0", type="build")
|
|
depends_on("py-typing-extensions", when="@2.0", type="build")
|
|
depends_on("ninja", when="@2.0", type="build")
|
|
depends_on("cmake@3.17:", when="@:2.0", type="build")
|
|
|
|
depends_on("py-scikit-build-core+pyproject@0.9:", when="@2.1", type="build")
|
|
depends_on("py-scikit-build-core+pyproject@0.10:", when="@2.2:", type="build")
|
|
|
|
@property
|
|
def cmake_prefix_paths(self):
|
|
paths = [join_path(python_platlib, "nanobind", "cmake")]
|
|
return paths
|