1{ lib 2, buildPythonPackage 3, fetchPypi 4, urwid 5, glibcLocales 6, pytestCheckHook 7}: 8 9buildPythonPackage rec { 10 pname = "urwid_readline"; 11 version = "0.13"; 12 13 src = fetchPypi { 14 inherit pname version; 15 hash = "sha256-AYAgy8hku17Ye+F9wmsGnq4nVcsp86nFaarDve0e+vQ="; 16 }; 17 18 propagatedBuildInputs = [ 19 urwid 20 ]; 21 22 nativeCheckInputs = [ 23 glibcLocales 24 pytestCheckHook 25 ]; 26 27 meta = with lib; { 28 description = "A textbox edit widget for urwid that supports readline shortcuts"; 29 homepage = "https://github.com/rr-/urwid_readline"; 30 license = licenses.mit; 31 maintainers = with maintainers; [ dotlambda ]; 32 }; 33}