summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-editables/package.py
blob: 990b2db11fd66854ec4f73cf6aca404399126d25 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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.3", sha256="167524e377358ed1f1374e61c268f0d7a4bf7dbd046c656f7b410cde16161b1a")

    depends_on("python@3.7:", type=("build", "run"))
    depends_on("py-setuptools@42:", type="build")