
* Added py-medaka and dependencies * fixed py-parasail build error * medaka still doesn't have correct linked libdeflate * fixed pyspoa deps * added htslib.patch, confirmed builds and runs * fixed style * Update var/spack/repos/builtin/packages/py-auditwheel/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * made requested changes * added targets for pyspoa dep Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
24 lines
912 B
Python
24 lines
912 B
Python
# Copyright 2013-2022 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 PyAuditwheel(PythonPackage):
|
|
"""Auditing and relabeling of PEP 600 manylinux_x_y, PEP 513 manylinux1,
|
|
PEP 571 manylinux2010 and PEP 599 manylinux2014 Linux wheels."""
|
|
|
|
homepage = "https://github.com/pypa/auditwheel"
|
|
pypi = "auditwheel/auditwheel-5.1.2.tar.gz"
|
|
|
|
version("5.1.2", sha256="3ee5830014931ea84af5cd065c637b6614efa03d9b88bd8fbfc924e7ed01d6ba")
|
|
|
|
depends_on("python@3.6:", type=("build", "run"))
|
|
depends_on("py-setuptools@45:", type="build")
|
|
depends_on("py-setuptools-scm@6.2:", type="build")
|
|
depends_on("py-pyelftools@0.24:", type=("build", "run"))
|
|
depends_on("py-importlib-metadata", when="^python@:3.7", type=("build", "run"))
|