2023-07-15 17:15:38 +00:00
|
|
|
{ lib, python3Packages, fetchPypi }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "doitlive";
|
|
|
|
version = "4.3.0";
|
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
src = fetchPypi {
|
2020-04-24 23:36:52 +00:00
|
|
|
inherit pname version;
|
|
|
|
sha256 = "03qrs032x206xrl0x3z0fpvxgjivzz9rkmb11bqlk1id10707cac";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [ click click-completion click-didyoumean ];
|
|
|
|
|
|
|
|
# disable tests (too many failures)
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Tool for live presentations in the terminal";
|
|
|
|
homepage = "https://pypi.python.org/pypi/doitlive";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ mbode ];
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "doitlive";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|