depot/third_party/nixpkgs/pkgs/development/python-modules/prompt-toolkit/default.nix
Default email 81047829ea Project import generated by Copybara.
GitOrigin-RevId: 48d63e924a2666baf37f4f14a18f19347fbd54a2
2022-02-10 15:34:41 -05:00

50 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pythonOlder
, wcwidth
}:
buildPythonPackage rec {
pname = "prompt-toolkit";
version = "3.0.24";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
pname = "prompt_toolkit";
inherit version;
sha256 = "1bb05628c7d87b645974a1bad3f17612be0c29fa39af9f7688030163f680bad6";
};
propagatedBuildInputs = [
wcwidth
];
checkInputs = [
pytestCheckHook
];
disabledTests = [
"test_pathcompleter_can_expanduser"
];
pythonImportsCheck = [
"prompt_toolkit"
];
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";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}