ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / urwid / default.nix
blob57e64ba97a894ff095feea7267a0338099d26187
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , isPy3k
5 , glibcLocales
6 }:
8 buildPythonPackage rec {
9   pname = "urwid";
10   version = "2.1.2";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "588bee9c1cb208d0906a9f73c613d2bd32c3ed3702012f51efe318a3f2127eae";
16   };
18   # tests need to be able to set locale
19   LC_ALL = "en_US.UTF-8";
20   checkInputs = [ glibcLocales ];
22   # tests which assert on strings don't decode results correctly
23   doCheck = isPy3k;
25   pythonImportsCheck = [
26     "urwid"
27   ];
29   meta = with lib; {
30     description = "A full-featured console (xterm et al.) user interface library";
31     homepage = "https://urwid.org/";
32     license = licenses.lgpl21Plus;
33     maintainers = with maintainers; [ SuperSandro2000 ];
34   };