Add new package: py-backports-entry-points-selectable (#26329)

This commit is contained in:
iarspider 2021-09-29 15:09:27 +02:00 committed by GitHub
parent ac29b70d18
commit 634b0b25c4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,21 @@
# Copyright 2013-2021 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 import *
class PyBackportsEntryPointsSelectable(PythonPackage):
"""Compatibility shim providing selectable entry points for older implementations"""
homepage = "https://github.com/jaraco/backports.entry_points_selectable"
pypi = "backports.entry_points_selectable/backports.entry_points_selectable-1.1.0.tar.gz"
maintainers = ['iarspider']
version('1.1.0', sha256='988468260ec1c196dab6ae1149260e2f5472c9110334e5d51adcb77867361f6a')
depends_on('python@2.7:2.7.999,3.0:3.10', type=('build', 'run'))
depends_on('py-setuptools', type='build')
depends_on('py-importlib-metadata@:3.8', type='build')