Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / flynt / default.nix
blob75465b4a9288cf392d7223e4d8d7e81edc59af7d
1 { lib
2 , buildPythonPackage
3 , pythonOlder
4 , fetchFromGitHub
5 , astor
6 , pytestCheckHook
7 }:
9 buildPythonPackage rec {
10   pname = "flynt";
11   version = "0.66";
13   disabled = pythonOlder "3.6";
15   src = fetchFromGitHub {
16     owner = "ikamensh";
17     repo = "flynt";
18     rev = version;
19     hash = "sha256-DV433wqLjF5k4g8J7rj5gZfaw+Y4/TDOoFKo3eKDjZ4=";
20   };
22   propagatedBuildInputs = [ astor ];
24   nativeCheckInputs = [ pytestCheckHook ];
26   meta = with lib; {
27     description = "command line tool to automatically convert a project's Python code from old format style strings into Python 3.6+'s f-strings";
28     homepage = "https://github.com/ikamensh/flynt";
29     license = licenses.mit;
30     maintainers = with maintainers; [ cpcloud ];
31   };