summary refs log blame commit diff
path: root/pkgs/development/python-modules/prompt_toolkit/default.nix
blob: 266ac3c90c301249b83524333feb787ad48e7968 (plain) (tree)
1
2
3
4
5
6
7
8
9
10



                    

         



                           
                     


                          
                                                                                

                 



                                                      
                                          








                                                                                   
                                                                           
                                
    
 
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, six
, wcwidth
}:

buildPythonPackage rec {
  pname = "prompt_toolkit";
  version = "3.0.19";

  src = fetchPypi {
    inherit pname version;
    sha256 = "08360ee3a3148bdb5163621709ee322ec34fc4375099afa4bbf751e9b7b7fa4f";
  };
  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;
  };
}