1{ lib, python3Packages, fetchPypi }:
2
3python3Packages.buildPythonPackage rec {
4 pname = "present";
5 version = "0.6.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "sha256-l9W5L4LD9qRo3rLBkgd2I/aDaj+ucib5UYg+X4RYg6c=";
10 };
11
12 propagatedBuildInputs = with python3Packages; [
13 click
14 pyyaml
15 pyfiglet
16 asciimatics
17 mistune
18 ];
19
20 pythonImportsCheck = [ "present" ];
21
22 # TypeError: don't know how to make test from: 0.6.0
23 doCheck = false;
24
25 meta = with lib; {
26 description = "A terminal-based presentation tool with colors and effects.";
27 homepage = "https://github.com/vinayak-mehta/present";
28 license = licenses.asl20;
29 maintainers = with maintainers; [ lom ];
30 };
31}