nixpkgs/pkgs/tools/misc/doitlive/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
814 B
Nix
Raw Normal View History

{ lib, python3Packages, fetchPypi }:
2018-01-28 18:53:44 +00:00
2018-08-03 13:53:52 +00:00
python3Packages.buildPythonApplication rec {
2018-01-28 18:53:44 +00:00
pname = "doitlive";
2024-01-21 02:29:43 +00:00
version = "5.0.0";
pyproject = true;
2018-01-28 18:53:44 +00:00
src = fetchPypi {
2018-01-28 18:53:44 +00:00
inherit pname version;
2024-01-21 02:29:43 +00:00
hash = "sha256-jAoibszDpQJjiNCZDhX3fLniALOG7r9YqaYEySkmMM4=";
2018-01-28 18:53:44 +00:00
};
2024-01-21 02:29:43 +00:00
nativeBuildInputs = with python3Packages; [ setuptools ];
2018-09-22 07:42:36 +00:00
propagatedBuildInputs = with python3Packages; [ click click-completion click-didyoumean ];
2018-01-28 18:53:44 +00:00
# disable tests (too many failures)
doCheck = false;
meta = with lib; {
2018-01-28 18:53:44 +00:00
description = "Tool for live presentations in the terminal";
2024-01-21 02:29:43 +00:00
homepage = "https://github.com/sloria/doitlive";
changelog = "https://github.com/sloria/doitlive/blob/${version}/CHANGELOG.rst";
2018-01-28 18:53:44 +00:00
license = licenses.mit;
maintainers = with maintainers; [ mbode ];
2023-11-27 01:17:53 +00:00
mainProgram = "doitlive";
2018-01-28 18:53:44 +00:00
};
}