2018-08-03 14:53:52 +01:00
|
|
|
{ stdenv, python3Packages }:
|
2018-01-28 18:53:44 +00:00
|
|
|
|
2018-08-03 14:53:52 +01:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2018-01-28 18:53:44 +00:00
|
|
|
pname = "doitlive";
|
2019-04-16 20:58:32 +01:00
|
|
|
version = "4.3.0";
|
2018-01-28 18:53:44 +00:00
|
|
|
|
2018-08-03 14:53:52 +01:00
|
|
|
src = python3Packages.fetchPypi {
|
2018-01-28 18:53:44 +00:00
|
|
|
inherit pname version;
|
2019-04-16 20:58:32 +01:00
|
|
|
sha256 = "03qrs032x206xrl0x3z0fpvxgjivzz9rkmb11bqlk1id10707cac";
|
2018-01-28 18:53:44 +00:00
|
|
|
};
|
|
|
|
|
2018-09-22 08:42:36 +01:00
|
|
|
propagatedBuildInputs = with python3Packages; [ click click-completion click-didyoumean ];
|
2018-01-28 18:53:44 +00:00
|
|
|
|
|
|
|
# disable tests (too many failures)
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Tool for live presentations in the terminal";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://pypi.python.org/pypi/doitlive";
|
2018-01-28 18:53:44 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ mbode ];
|
|
|
|
};
|
|
|
|
}
|