2018-11-07 04:28:42 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pytest
|
|
|
|
, docopt
|
|
|
|
, six
|
|
|
|
, wcwidth
|
|
|
|
, pygments
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "prompt_toolkit";
|
2019-10-16 11:43:12 +02:00
|
|
|
version = "1.0.18";
|
2018-11-07 04:28:42 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-16 11:43:12 +02:00
|
|
|
sha256 = "dd4fca02c8069497ad931a2d09914c6b0d1b50151ce876bc15bde4c747090126";
|
2018-11-07 04:28:42 +01:00
|
|
|
};
|
|
|
|
checkPhase = ''
|
|
|
|
rm prompt_toolkit/win32_types.py
|
|
|
|
py.test -k 'not test_pathcompleter_can_expanduser'
|
|
|
|
'';
|
|
|
|
|
|
|
|
checkInputs = [ pytest ];
|
|
|
|
propagatedBuildInputs = [ docopt six wcwidth pygments ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Python library for building powerful interactive command lines";
|
|
|
|
longDescription = ''
|
|
|
|
prompt_toolkit could be a replacement for readline, but it can be
|
|
|
|
much more than that. It is cross-platform, everything that you build
|
|
|
|
with it should run fine on both Unix and Windows systems. Also ships
|
|
|
|
with a nice interactive Python shell (called ptpython) built on top.
|
|
|
|
'';
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/jonathanslenders/python-prompt-toolkit";
|
2018-11-07 04:28:42 +01:00
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|