
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
21 lines
759 B
Python
21 lines
759 B
Python
# 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 PyFlake8ImportOrder(PythonPackage):
|
|
"""Flake8 and pylama plugin that checks the ordering of import statements.
|
|
"""
|
|
|
|
homepage = "https://github.com/PyCQA/flake8-import-order"
|
|
pypi = "flake8-import-order/flake8-import-order-0.18.1.tar.gz"
|
|
|
|
version('0.18.1', sha256='a28dc39545ea4606c1ac3c24e9d05c849c6e5444a50fb7e9cdd430fc94de6e92')
|
|
|
|
depends_on('py-enum34', when='^python@:2', type=('build', 'run'))
|
|
depends_on('py-pycodestyle', type=('build', 'run'))
|
|
depends_on('py-setuptools', type=('build', 'run'))
|