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";
|
2018-11-18 14:33:51 +00:00
|
|
|
version = "4.2.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;
|
2018-11-18 14:33:51 +00:00
|
|
|
sha256 = "0yabw2gqsjdivivlwsc2q7p3qq72cccx3xzfc1a4gd8d74f84nrw";
|
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";
|
|
|
|
homepage = https://pypi.python.org/pypi/doitlive;
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ mbode ];
|
|
|
|
};
|
|
|
|
}
|