py-flit: add maintainer (#25667)

This commit is contained in:
Adam J. Stewart 2021-08-27 19:26:41 -05:00 committed by GitHub
parent 9577d890c4
commit 3a4073cfff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View File

@ -11,6 +11,7 @@ class PyFlitCore(Package):
homepage = "https://github.com/takluyver/flit"
url = "https://pypi.io/packages/py3/f/flit-core/flit_core-3.3.0-py3-none-any.whl"
maintainers = ['takluyver']
version('3.3.0', sha256='9b247b3095cb3c43933a59a7433f92ddfdd7fc843e08ef0f4550d53a9cfbbef6', expand=False)

View File

@ -10,6 +10,7 @@ class PyFlit(PythonPackage):
"""Flit is a simple way to put Python packages and modules on PyPI."""
pypi = "flit/flit-3.3.0.tar.gz"
maintainers = ['takluyver']
version('3.3.0', sha256='65fbe22aaa7f880b776b20814bd80b0afbf91d1f95b17235b608aa256325ce57')
@ -17,6 +18,3 @@ class PyFlit(PythonPackage):
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)