lol

Merge pull request #165409 from SuperSandro2000/urwid

python39Packages.urwid: update homepage, remove old meta.repositories.git

authored by

Fabian Affolter and committed by
GitHub
f2c34469 3095b436

+14 -5
+14 -5
pkgs/development/python-modules/urwid/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, isPy3k, isPy27, glibcLocales }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , isPy3k 5 + , isPy27 6 + , glibcLocales 7 + }: 2 8 3 9 buildPythonPackage rec { 4 10 pname = "urwid"; 5 11 version = "2.1.2"; 12 + format = "setuptools"; 13 + 6 14 disabled = isPy27; 7 15 8 16 src = fetchPypi { ··· 17 25 # tests which assert on strings don't decode results correctly 18 26 doCheck = isPy3k; 19 27 20 - pythonImportsCheck = [ "urwid" ]; 28 + pythonImportsCheck = [ 29 + "urwid" 30 + ]; 21 31 22 32 meta = with lib; { 23 33 description = "A full-featured console (xterm et al.) user interface library"; 24 - homepage = "https://excess.org/urwid"; 25 - repositories.git = "git://github.com/wardi/urwid.git"; 26 - license = licenses.lgpl21; 34 + homepage = "https://urwid.org/"; 35 + license = licenses.lgpl21Plus; 27 36 maintainers = with maintainers; [ ]; 28 37 }; 29 38 }