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

This commit is contained in:
Fabian Affolter 2022-11-27 08:26:07 +01:00 committed by GitHub
parent 5c91906018
commit 0167b31088
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,13 @@
{ 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; [ ];
};
}