Commit 5d06e1f6 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python310Packages.flake8-length: add changelog to meta

parent 7d0ed7f2
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -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 ];
  };
}