Add py-flake8-import-order package (#13273)

This commit is contained in:
Adam J. Stewart 2019-10-20 11:09:23 -05:00 committed by GitHub
parent 00f766b248
commit a6bc0c7ee0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,20 @@
# Copyright 2013-2019 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"
url = "https://pypi.io/packages/source/f/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'))