22 lines
885 B
Python
22 lines
885 B
Python
# Copyright 2013-2024 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 PyEditables(PythonPackage):
|
|
"""A Python library for creating "editable wheels"."""
|
|
|
|
homepage = "https://github.com/pfmoore/editables"
|
|
pypi = "editables/editables-0.3.tar.gz"
|
|
|
|
version("0.5", sha256="309627d9b5c4adc0e668d8c6fa7bac1ba7c8c5d415c2d27f60f081f8e80d1de2")
|
|
version("0.4", sha256="dc322c42e7ccaf19600874035a4573898d88aadd07e177c239298135b75da772")
|
|
version("0.3", sha256="167524e377358ed1f1374e61c268f0d7a4bf7dbd046c656f7b410cde16161b1a")
|
|
|
|
depends_on("python@3.7:", type=("build", "run"))
|
|
depends_on("py-setuptools@42:", type="build", when="@:0.3")
|
|
depends_on("py-flit-core@3.3:", type="build", when="@0.4:")
|