1{ stdenv, python3Packages }:
2
3python3Packages.buildPythonApplication rec {
4 pname = "doitlive";
5 version = "3.0.3";
6
7 src = python3Packages.fetchPypi {
8 inherit pname version;
9 sha256 = "19i16ca835rb3gal1sxyvpyilj9a80n6nikf0smlzmxck38x86fj";
10 };
11
12 propagatedBuildInputs = with python3Packages; [ click ];
13
14 # disable tests (too many failures)
15 doCheck = false;
16
17 meta = with stdenv.lib; {
18 description = "Tool for live presentations in the terminal";
19 homepage = https://pypi.python.org/pypi/doitlive;
20 license = licenses.mit;
21 maintainers = with maintainers; [ mbode ];
22 };
23}