Unverified Commit 0167b310 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python310Packages.flake8-import-order: add changelog to meta

parent 5c919060
Loading
Loading
Loading
Loading
+12 −1
Original line number Diff line number Diff line
{ lib, buildPythonPackage, fetchPypi, isPy3k, enum34, pycodestyle, pytest, flake8, pylama }:
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, enum34
, pycodestyle
, pytest
, flake8
, pylama
}:

buildPythonPackage rec {
  pname = "flake8-import-order";
@@ -20,6 +29,8 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Flake8 and pylama plugin that checks the ordering of import statements";
    homepage = "https://github.com/PyCQA/flake8-import-order";
    changelog = "https://github.com/PyCQA/flake8-import-order/blob/${version}/CHANGELOG.rst";
    license = with licenses; [ lgpl3 mit ];
    maintainers = with maintainers; [ ];
  };
}