depot/third_party/nixpkgs/pkgs/misc/present/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

32 lines
744 B
Nix

{ lib, python3Packages, fetchPypi }:
python3Packages.buildPythonPackage rec {
pname = "present";
version = "0.6.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-l9W5L4LD9qRo3rLBkgd2I/aDaj+ucib5UYg+X4RYg6c=";
};
propagatedBuildInputs = with python3Packages; [
click
pyyaml
pyfiglet
asciimatics
mistune
];
pythonImportsCheck = [ "present" ];
# TypeError: don't know how to make test from: 0.6.0
doCheck = false;
meta = with lib; {
description = "Terminal-based presentation tool with colors and effects";
homepage = "https://github.com/vinayak-mehta/present";
license = licenses.asl20;
maintainers = with maintainers; [ lom ];
mainProgram = "present";
};
}