From 0167b31088dd2d763cdb9986d3b70b8387daddb2 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 27 Nov 2022 08:26:07 +0100 Subject: [PATCH] python310Packages.flake8-import-order: add changelog to meta --- .../python-modules/flake8-import-order/default.nix | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/flake8-import-order/default.nix b/pkgs/development/python-modules/flake8-import-order/default.nix index be89c1fcab21..cf682c7e8768 100644 --- a/pkgs/development/python-modules/flake8-import-order/default.nix +++ b/pkgs/development/python-modules/flake8-import-order/default.nix @@ -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; [ ]; }; }