mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
python310Packages.flake8-import-order: add changelog to meta
This commit is contained in:
parent
5c91906018
commit
0167b31088
1 changed files with 12 additions and 1 deletions
|
@ -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; [ ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue