lol

doitlive: 4.3.0 -> 5.0.0

authored by

R. Ryantm and committed by
Nick Cao
82aed8e6 3211e2cf

+7 -3
+7 -3
pkgs/tools/misc/doitlive/default.nix
··· 2 2 3 3 python3Packages.buildPythonApplication rec { 4 4 pname = "doitlive"; 5 - version = "4.3.0"; 5 + version = "5.0.0"; 6 + pyproject = true; 6 7 7 8 src = fetchPypi { 8 9 inherit pname version; 9 - sha256 = "03qrs032x206xrl0x3z0fpvxgjivzz9rkmb11bqlk1id10707cac"; 10 + hash = "sha256-jAoibszDpQJjiNCZDhX3fLniALOG7r9YqaYEySkmMM4="; 10 11 }; 11 12 13 + nativeBuildInputs = with python3Packages; [ setuptools ]; 14 + 12 15 propagatedBuildInputs = with python3Packages; [ click click-completion click-didyoumean ]; 13 16 14 17 # disable tests (too many failures) ··· 16 19 17 20 meta = with lib; { 18 21 description = "Tool for live presentations in the terminal"; 19 - homepage = "https://pypi.python.org/pypi/doitlive"; 22 + homepage = "https://github.com/sloria/doitlive"; 23 + changelog = "https://github.com/sloria/doitlive/blob/${version}/CHANGELOG.rst"; 20 24 license = licenses.mit; 21 25 maintainers = with maintainers; [ mbode ]; 22 26 mainProgram = "doitlive";