aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/prompt_toolkit/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/prompt_toolkit/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/prompt_toolkit/default.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/prompt_toolkit/default.nix b/nixpkgs/pkgs/development/python-modules/prompt_toolkit/default.nix
new file mode 100644
index 00000000000..dd3c8d16a51
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/prompt_toolkit/default.nix
@@ -0,0 +1,35 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, pytest
+, six
+, wcwidth
+}:
+
+buildPythonPackage rec {
+ pname = "prompt_toolkit";
+ version = "2.0.10";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1nr990i4b04rnlw1ghd0xmgvvvhih698mb6lb6jylr76cs7zcnpi";
+ };
+ checkPhase = ''
+ py.test -k 'not test_pathcompleter_can_expanduser'
+ '';
+
+ checkInputs = [ pytest ];
+ propagatedBuildInputs = [ six wcwidth ];
+
+ 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.
+ '';
+ homepage = https://github.com/jonathanslenders/python-prompt-toolkit;
+ license = lib.licenses.bsd3;
+ };
+}