about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/doitlive/default.nix
blob: 483b36d98d319e1ac5d2e2928b3aa8be54b4d29d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, python3Packages, fetchPypi }:

python3Packages.buildPythonApplication rec {
  pname = "doitlive";
  version = "4.3.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "03qrs032x206xrl0x3z0fpvxgjivzz9rkmb11bqlk1id10707cac";
  };

  propagatedBuildInputs = with python3Packages; [ click click-completion click-didyoumean ];

  # disable tests (too many failures)
  doCheck = false;

  meta = with lib; {
    description = "Tool for live presentations in the terminal";
    homepage = "https://pypi.python.org/pypi/doitlive";
    license = licenses.mit;
    maintainers = with maintainers; [ mbode ];
    mainProgram = "doitlive";
  };
}