24 lines
776 B
Python
24 lines
776 B
Python
# Copyright Spack Project Developers. See COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack.package import *
|
|
|
|
|
|
class PyRpdsPy(PythonPackage):
|
|
"""Python bindings to the Rust rpds crate for persistent data structures."""
|
|
|
|
homepage = "https://rpds.readthedocs.io/"
|
|
pypi = "rpds_py/rpds_py-0.20.0.tar.gz"
|
|
|
|
maintainers("wdconinc")
|
|
|
|
license("MIT", checked_by="wdconinc")
|
|
|
|
version("0.20.0", sha256="d72a210824facfdaf8768cf2d7ca25a042c30320b3020de2fa04640920d4e121")
|
|
version("0.18.1", sha256="dc48b479d540770c811fbd1eb9ba2bb66951863e448efec2e2c102625328e92f")
|
|
|
|
depends_on("rust@1.76:", when="@0.19:")
|
|
depends_on("py-maturin@1.0:1", type="build")
|
|
depends_on("py-maturin@1.2:", type="build", when="@0.20:")
|