New package: py-flit (#25630)

This commit is contained in:
Adam J. Stewart 2021-08-27 12:57:07 -05:00 committed by GitHub
parent a7c6224b3a
commit 98e6e4a3a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,26 @@
# 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 PyFlitCore(Package):
"""Distribution-building parts of Flit."""
homepage = "https://github.com/takluyver/flit"
url = "https://pypi.io/packages/py3/f/flit-core/flit_core-3.3.0-py3-none-any.whl"
version('3.3.0', sha256='9b247b3095cb3c43933a59a7433f92ddfdd7fc843e08ef0f4550d53a9cfbbef6', expand=False)
extends('python')
depends_on('python@3.4:', type=('build', 'run'))
depends_on('py-pip', type='build')
depends_on('py-toml', type=('build', 'run'))
def install(self, spec, prefix):
# Install wheel instead of installing from source
# to prevent circular dependency on flit
pip = which('pip')
pip('install', self.stage.archive_file, '--prefix={0}'.format(prefix))

View File

@ -0,0 +1,22 @@
# 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 PyFlit(PythonPackage):
"""Flit is a simple way to put Python packages and modules on PyPI."""
pypi = "flit/flit-3.3.0.tar.gz"
version('3.3.0', sha256='65fbe22aaa7f880b776b20814bd80b0afbf91d1f95b17235b608aa256325ce57')
depends_on('py-flit-core@3.3.0:', type=('build', 'run'))
depends_on('py-requests', type=('build', 'run'))
depends_on('py-docutils', type=('build', 'run'))
depends_on('py-toml', type=('build', 'run'))
def setup_dependent_package(self, module, dependent_spec):
module.flit = Executable(self.prefix.bin.flit)