python3Packages.urwid: specify license

This commit is contained in:
Fabian Affolter 2022-03-23 10:26:40 +01:00 committed by GitHub
parent e0969b44bf
commit c1538169de
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,8 +1,16 @@
{ lib, buildPythonPackage, fetchPypi, isPy3k, isPy27, glibcLocales }:
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, isPy27
, glibcLocales
}:
buildPythonPackage rec {
pname = "urwid";
version = "2.1.2";
format = "setuptools";
disabled = isPy27;
src = fetchPypi {
@ -17,12 +25,14 @@ buildPythonPackage rec {
# tests which assert on strings don't decode results correctly
doCheck = isPy3k;
pythonImportsCheck = [ "urwid" ];
pythonImportsCheck = [
"urwid"
];
meta = with lib; {
description = "A full-featured console (xterm et al.) user interface library";
homepage = "https://urwid.org/";
license = licenses.lgpl21;
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ ];
};
}