9 buildPythonPackage rec {
12 format = "setuptools";
14 disabled = pythonOlder "3.6";
16 src = fetchFromGitHub {
20 hash = "sha256-DV433wqLjF5k4g8J7rj5gZfaw+Y4/TDOoFKo3eKDjZ4=";
23 propagatedBuildInputs = [ astor ];
25 nativeCheckInputs = [ pytestCheckHook ];
28 description = "command line tool to automatically convert a project's Python code from old format style strings into Python 3.6+'s f-strings";
29 mainProgram = "flynt";
30 homepage = "https://github.com/ikamensh/flynt";
31 license = licenses.mit;
32 maintainers = with maintainers; [ cpcloud ];