flynt: init at 0.66 (#137177)

Co-authored-by: Bobby Rong <rjl931189261@126.com>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Phillip Cloud 2021-09-12 09:00:19 -05:00 committed by GitHub
parent 2b022a979a
commit b040385412
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{ 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 ];
};
}

View File

@ -2724,6 +2724,8 @@ in {
flux-led = callPackage ../development/python-modules/flux-led { };
flynt = callPackage ../development/python-modules/flynt { };
fn = callPackage ../development/python-modules/fn { };
fnvhash = callPackage ../development/python-modules/fnvhash { };