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-10 07:43:25 +00:00
|
|
|
version = "4.1.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-10 07:43:25 +00:00
|
|
|
sha256 = "0zkvmnv6adz0gyqiql8anpxnh8zzpqk0p2n0pf2kxy55010qs4wz";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|