nixpkgs/pkgs/development/python-modules/prompt_toolkit/default.nix
2019-02-23 20:05:18 +01:00

36 lines
967 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytest
, six
, wcwidth
}:
buildPythonPackage rec {
pname = "prompt_toolkit";
version = "2.0.9";
src = fetchPypi {
inherit pname version;
sha256 = "2519ad1d8038fd5fc8e770362237ad0364d16a7650fb5724af6997ed5515e3c1";
};
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;
};
}