Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 19 lines 519 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "urwid"; 5 version = "2.0.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1g6cpicybvbananpjikmjk8npmjk4xvak1wjzji62wc600wkwkb4"; 10 }; 11 12 meta = with stdenv.lib; { 13 description = "A full-featured console (xterm et al.) user interface library"; 14 homepage = http://excess.org/urwid; 15 repositories.git = git://github.com/wardi/urwid.git; 16 license = licenses.lgpl21; 17 maintainers = with maintainers; [ ]; 18 }; 19}