depot/third_party/nixpkgs/pkgs/development/python-modules/prompt-toolkit/1.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

45 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
docopt,
six,
wcwidth,
pygments,
}:
buildPythonPackage rec {
pname = "prompt-toolkit";
version = "1.0.18";
src = fetchPypi {
pname = "prompt_toolkit";
inherit version;
sha256 = "dd4fca02c8069497ad931a2d09914c6b0d1b50151ce876bc15bde4c747090126";
};
propagatedBuildInputs = [
docopt
six
wcwidth
pygments
];
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = [ "test_pathcompleter_can_expanduser" ];
meta = with lib; {
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.
'';
homepage = "https://github.com/jonathanslenders/python-prompt-toolkit";
maintainers = [ ];
license = licenses.bsd3;
};
}