Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / misc / present / default.nix
blob7ecf61837c590f1f699106e07d9841cdb5d13706
1 { lib, python3Packages, fetchPypi }:
3 python3Packages.buildPythonPackage rec {
4   pname = "present";
5   version = "0.6.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "sha256-l9W5L4LD9qRo3rLBkgd2I/aDaj+ucib5UYg+X4RYg6c=";
10   };
12   propagatedBuildInputs = with python3Packages; [
13     click
14     pyyaml
15     pyfiglet
16     asciimatics
17     mistune
18   ];
20   pythonImportsCheck = [ "present" ];
22   # TypeError: don't know how to make test from: 0.6.0
23   doCheck = false;
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   };