Files
nixpkgs/pkgs/development/python-modules/flake8-import-order/default.nix
T
Martin Weinelt f2b27866c2 python3Packages.flake8-import-order: 0.18.2 -> 0.19.2
https://github.com/PyCQA/flake8-import-order/blob/0.19.2/CHANGELOG.rst

This commit was automatically generated using update-python-libraries.
2025-08-09 18:59:27 +02:00

46 lines
918 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
flake8,
pycodestyle,
pylama,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "flake8-import-order";
version = "0.19.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-Ezs8VUl2MeQjUHT8mKlQeLuoF4MjefIqMfCtJFW8sLI=";
};
propagatedBuildInputs = [ pycodestyle ];
nativeCheckInputs = [
flake8
pycodestyle
pylama
pytestCheckHook
];
pythonImportsCheck = [ "flake8_import_order" ];
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 = [ ];
};
}