about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/flynt/default.nix
blob: 0e0b73d20f4ee927732554f3154dfccb8860b23d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, astor
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "flynt";
  version = "0.66";
  format = "setuptools";

  disabled = pythonOlder "3.6";

  src = fetchFromGitHub {
    owner = "ikamensh";
    repo = "flynt";
    rev = version;
    hash = "sha256-DV433wqLjF5k4g8J7rj5gZfaw+Y4/TDOoFKo3eKDjZ4=";
  };

  propagatedBuildInputs = [ astor ];

  nativeCheckInputs = [ pytestCheckHook ];

  meta = with lib; {
    description = "command line tool to automatically convert a project's Python code from old format style strings into Python 3.6+'s f-strings";
    mainProgram = "flynt";
    homepage = "https://github.com/ikamensh/flynt";
    license = licenses.mit;
    maintainers = with maintainers; [ cpcloud ];
  };
}