6 , aspy-refactor-imports
10 buildPythonPackage rec {
11 pname = "reorder-python-imports";
13 disabled = pythonOlder "3.8";
15 src = fetchFromGitHub {
17 repo = "reorder_python_imports";
19 hash = "sha256-bKv9APbraR2359IzzkzXs4sEXrTvGK3J4LO3wFHOti0=";
22 propagatedBuildInputs = [
27 pythonImportsCheck = [
28 "reorder_python_imports"
35 # prints an explanation about PYTHONPATH first
36 # and therefore fails the assertion
38 "test_success_messages_are_printed_on_stderr"
42 description = "Tool for automatically reordering python imports";
43 homepage = "https://github.com/asottile/reorder_python_imports";
44 license = licenses.mit;
45 maintainers = with maintainers; [ gador ];