diff options
Diffstat (limited to 'pkgs/development/python-modules/lineedit/default.nix')
-rw-r--r-- | pkgs/development/python-modules/lineedit/default.nix | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/pkgs/development/python-modules/lineedit/default.nix b/pkgs/development/python-modules/lineedit/default.nix index 9f7bc9f2e371..51f5e5a83407 100644 --- a/pkgs/development/python-modules/lineedit/default.nix +++ b/pkgs/development/python-modules/lineedit/default.nix @@ -1,13 +1,14 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, pygments -, six -, wcwidth -, pytestCheckHook -, pyte -, ptyprocess -, pexpect +{ + lib, + buildPythonPackage, + fetchFromGitHub, + pygments, + six, + wcwidth, + pytestCheckHook, + pyte, + ptyprocess, + pexpect, }: buildPythonPackage rec { @@ -38,7 +39,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "lineedit" ]; meta = with lib; { - description = "A readline library based on prompt_toolkit which supports multiple modes"; + description = "Readline library based on prompt_toolkit which supports multiple modes"; homepage = "https://github.com/randy3k/lineedit"; license = licenses.mit; maintainers = with maintainers; [ savyajha ]; |