1 { lib, buildPythonPackage, fetchPypi, isPy3k, enum34, pycodestyle, pytest, flake8, pylama }:
3 buildPythonPackage rec {
4 pname = "flake8-import-order";
9 sha256 = "14kfvsagqc6lrplvf3x58ia6x744bk8fj91wmk0hcipa8naw73d2";
12 propagatedBuildInputs = [ pycodestyle ] ++ lib.optional (!isPy3k) enum34;
14 checkInputs = [ pytest flake8 pycodestyle pylama ];
21 description = "Flake8 and pylama plugin that checks the ordering of import statements";
22 homepage = "https://github.com/PyCQA/flake8-import-order";
23 license = with licenses; [ lgpl3 mit ];