Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / flynt / default.nix
blob0e0b73d20f4ee927732554f3154dfccb8860b23d
1 { lib
2 , buildPythonPackage
3 , pythonOlder
4 , fetchFromGitHub
5 , astor
6 , pytestCheckHook
7 }:
9 buildPythonPackage rec {
10   pname = "flynt";
11   version = "0.66";
12   format = "setuptools";
14   disabled = pythonOlder "3.6";
16   src = fetchFromGitHub {
17     owner = "ikamensh";
18     repo = "flynt";
19     rev = version;
20     hash = "sha256-DV433wqLjF5k4g8J7rj5gZfaw+Y4/TDOoFKo3eKDjZ4=";
21   };
23   propagatedBuildInputs = [ astor ];
25   nativeCheckInputs = [ pytestCheckHook ];
27   meta = with lib; {
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 ];
33   };