11 buildPythonPackage rec {
17 inherit pname version;
18 hash = "sha256-yYt13FsKhkWcTwGh0yrH60M47EMXpEaVFf8eaH7NkJ4=";
21 nativeBuildInputs = [ hatchling ];
23 propagatedBuildInputs = [ pyflakes ] ++ lib.optional (pythonOlder "3.11") tomli;
25 nativeCheckInputs = [ pytestCheckHook ];
27 pythonImportsCheck = [ "autoflake" ];
30 # AssertionError: True is not false
31 "test_is_literal_or_name"
35 description = "Tool to remove unused imports and unused variables";
36 mainProgram = "autoflake";
37 homepage = "https://github.com/myint/autoflake";
38 license = licenses.mit;
39 maintainers = with maintainers; [ yuriaisaka ];