python310Packages.flake8-length: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-02-24 10:46:58 +01:00
parent 7d0ed7f2e5
commit 5d06e1f656

View file

@ -20,18 +20,19 @@ buildPythonPackage rec {
flake8
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"flake8_length"
];
nativeCheckInputs = [ pytestCheckHook ];
pytestFlagsArray = [ "tests/" ];
meta = {
meta = with lib; {
description = "Flake8 plugin for a smart line length validation";
homepage = "https://github.com/orsinium-labs/flake8-length";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ sauyon ];
changelog = "https://github.com/orsinium-labs/flake8-length/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ sauyon ];
};
}