summary refs log blame commit diff
path: root/pkgs/development/python-modules/flynt/default.nix
blob: 3c09106c94b8627994e76355faab2791606bc019 (plain) (tree)































                                                                                                                                                  
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, astor
, pytestCheckHook
}:

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

  disabled = pythonOlder "3.6";

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

  propagatedBuildInputs = [ astor ];

  checkInputs = [ 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";
    homepage = "https://github.com/ikamensh/flynt";
    license = licenses.mit;
    maintainers = with maintainers; [ cpcloud ];
  };
}