My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/python-modules/urwid/default.nix

20 lines
531 B

{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "urwid";
version = "2.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "0896f36060beb6bf3801cb554303fef336a79661401797551ba106d23ab4cd86";
};
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; [ ];
};
}