python3Packages.urwid: specify license

main
Fabian Affolter 2 years ago committed by GitHub
parent e0969b44bf
commit c1538169de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 16
      pkgs/development/python-modules/urwid/default.nix

@ -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; [ ];
};
}

Loading…
Cancel
Save