summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-09-05 09:45:55 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2017-09-05 09:45:55 +0200
commit413b54bcef65a31bc2dda01b3e084682fad78c4a (patch)
treee7bdf6d7c49b3630d5bb990d48bcc359bae8c1a0 /pkgs/development
parent54e502272886f23434306f0aeec60d1802b694be (diff)
downloadnixpkgs-413b54bcef65a31bc2dda01b3e084682fad78c4a.tar
nixpkgs-413b54bcef65a31bc2dda01b3e084682fad78c4a.tar.gz
nixpkgs-413b54bcef65a31bc2dda01b3e084682fad78c4a.tar.bz2
nixpkgs-413b54bcef65a31bc2dda01b3e084682fad78c4a.tar.lz
nixpkgs-413b54bcef65a31bc2dda01b3e084682fad78c4a.tar.xz
nixpkgs-413b54bcef65a31bc2dda01b3e084682fad78c4a.tar.zst
nixpkgs-413b54bcef65a31bc2dda01b3e084682fad78c4a.zip
python.pkgs.prompt_toolkit: 1.0.14 -> 1.0.15
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/prompt_toolkit/default.nix40
1 files changed, 40 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/prompt_toolkit/default.nix b/pkgs/development/python-modules/prompt_toolkit/default.nix
new file mode 100644
index 00000000000..9704f1b92c9
--- /dev/null
+++ b/pkgs/development/python-modules/prompt_toolkit/default.nix
@@ -0,0 +1,40 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, pytest
+, docopt
+, six
+, wcwidth
+, pygments
+}:
+
+buildPythonPackage rec {
+  pname = "prompt_toolkit";
+  name = "${pname}-${version}";
+  version = "1.0.15";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "858588f1983ca497f1cf4ffde01d978a3ea02b01c8a26a8bbc5cd2e66d816917";
+  };
+  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.
+    '';
+    homepage = https://github.com/jonathanslenders/python-prompt-toolkit;
+    license = lib.licenses.bsd3;
+    maintainers = with lib.maintainers; [ nckx ];
+  };
+}
\ No newline at end of file