2019-12-20 16:29:35 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, glibcLocales }:
|
2017-10-29 11:12:42 +00:00
|
|
|
|
2019-08-20 17:46:06 +01:00
|
|
|
buildPythonPackage rec {
|
2017-10-29 11:12:42 +00:00
|
|
|
pname = "urwid";
|
2019-12-19 19:31:25 +00:00
|
|
|
version = "2.1.0";
|
2017-10-29 11:12:42 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-12-19 19:31:25 +00:00
|
|
|
sha256 = "0896f36060beb6bf3801cb554303fef336a79661401797551ba106d23ab4cd86";
|
2017-10-29 11:12:42 +00:00
|
|
|
};
|
|
|
|
|
2019-12-20 16:29:35 +00:00
|
|
|
# tests need to be able to set locale
|
|
|
|
LC_ALL = "en_US.UTF-8";
|
|
|
|
checkInputs = [ glibcLocales ];
|
|
|
|
|
2017-10-29 11:12:42 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A full-featured console (xterm et al.) user interface library";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://excess.org/urwid";
|
|
|
|
repositories.git = "git://github.com/wardi/urwid.git";
|
2017-10-29 11:12:42 +00:00
|
|
|
license = licenses.lgpl21;
|
2019-07-03 10:27:39 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2017-10-29 11:12:42 +00:00
|
|
|
};
|
2019-08-20 17:46:06 +01:00
|
|
|
}
|