python310Packages.flake8-length: add changelog to meta
This commit is contained in:
parent
7d0ed7f2e5
commit
5d06e1f656
1 changed files with 6 additions and 5 deletions
|
@ -20,18 +20,19 @@ buildPythonPackage rec {
|
||||||
flake8
|
flake8
|
||||||
];
|
];
|
||||||
|
|
||||||
|
nativeCheckInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
pythonImportsCheck = [
|
pythonImportsCheck = [
|
||||||
"flake8_length"
|
"flake8_length"
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeCheckInputs = [ pytestCheckHook ];
|
|
||||||
|
|
||||||
pytestFlagsArray = [ "tests/" ];
|
pytestFlagsArray = [ "tests/" ];
|
||||||
|
|
||||||
meta = {
|
meta = with lib; {
|
||||||
description = "Flake8 plugin for a smart line length validation";
|
description = "Flake8 plugin for a smart line length validation";
|
||||||
homepage = "https://github.com/orsinium-labs/flake8-length";
|
homepage = "https://github.com/orsinium-labs/flake8-length";
|
||||||
license = lib.licenses.mit;
|
changelog = "https://github.com/orsinium-labs/flake8-length/releases/tag/${version}";
|
||||||
maintainers = with lib.maintainers; [ sauyon ];
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ sauyon ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue