summary refs log tree commit diff
path: root/pkgs/development/python-modules/urwid/default.nix
blob: 885595ef6d4bfc0ca3ee635b07e6826eb61ced02 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "urwid";
  version = "2.0.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1g6cpicybvbananpjikmjk8npmjk4xvak1wjzji62wc600wkwkb4";
  };

  meta = with stdenv.lib; {
    description = "A full-featured console (xterm et al.) user interface library";
    homepage = http://excess.org/urwid;
    repositories.git = git://github.com/wardi/urwid.git;
    license = licenses.lgpl21;
    maintainers = with maintainers; [ ];
  };
}