12 buildPythonPackage rec {
13 pname = "prompt-toolkit";
17 pname = "prompt_toolkit";
19 sha256 = "dd4fca02c8069497ad931a2d09914c6b0d1b50151ce876bc15bde4c747090126";
22 propagatedBuildInputs = [
29 nativeCheckInputs = [ pytestCheckHook ];
31 disabledTests = [ "test_pathcompleter_can_expanduser" ];
34 description = "Python library for building powerful interactive command lines";
36 prompt_toolkit could be a replacement for readline, but it can be
37 much more than that. It is cross-platform, everything that you build
38 with it should run fine on both Unix and Windows systems. Also ships
39 with a nice interactive Python shell (called ptpython) built on top.
41 homepage = "https://github.com/jonathanslenders/python-prompt-toolkit";
43 license = licenses.bsd3;