Merge pull request #165655 from gador/add-reorder-python-imports

This commit is contained in:
Sandro 2022-03-27 21:11:18 +02:00 committed by GitHub
commit 54c0090c3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,43 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, aspy-refactor-imports
}:
buildPythonPackage rec {
pname = "reorder-python-imports";
version = "3.0.1";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "asottile";
repo = "reorder_python_imports";
rev = "v${version}";
sha256 = "1bdKM1sUhpZHy03DdoTzpt1iGm1t1nWnuPyTgl3KhCY=";
};
propagatedBuildInputs = [ aspy-refactor-imports ];
pythonImportsCheck = [
"reorder_python_imports"
];
checkInputs = [
pytestCheckHook
];
# prints an explanation about PYTHONPATH first
# and therefore fails the assertion
disabledTests = [
"test_success_messages_are_printed_on_stderr"
];
meta = with lib; {
description = "Tool for automatically reordering python imports";
homepage = "https://github.com/asottile/reorder_python_imports";
license = licenses.mit;
maintainers = with maintainers; [ gador ];
};
}

View File

@ -8714,6 +8714,8 @@ in {
rencode = callPackage ../development/python-modules/rencode { };
reorder-python-imports = callPackage ../development/python-modules/reorder-python-imports { };
reolink = callPackage ../development/python-modules/reolink { };
reparser = callPackage ../development/python-modules/reparser { };