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

24 lines
638 B
Nix
Raw Normal View History

2018-08-03 15:53:52 +02:00
{ stdenv, python3Packages }:
2018-01-28 19:53:44 +01:00
2018-08-03 15:53:52 +02:00
python3Packages.buildPythonApplication rec {
2018-01-28 19:53:44 +01:00
pname = "doitlive";
2018-09-22 09:42:36 +02:00
version = "4.0.1";
2018-01-28 19:53:44 +01:00
2018-08-03 15:53:52 +02:00
src = python3Packages.fetchPypi {
2018-01-28 19:53:44 +01:00
inherit pname version;
2018-09-22 09:42:36 +02:00
sha256 = "1icnjkczy52i3cp1fmsijqny571fz1h4b3wpdzz79cn90fr326pc";
2018-01-28 19:53:44 +01:00
};
2018-09-22 09:42:36 +02:00
propagatedBuildInputs = with python3Packages; [ click click-completion click-didyoumean ];
2018-01-28 19:53:44 +01:00
# disable tests (too many failures)
doCheck = false;
meta = with stdenv.lib; {
description = "Tool for live presentations in the terminal";
homepage = https://pypi.python.org/pypi/doitlive;
license = licenses.mit;
maintainers = with maintainers; [ mbode ];
};
}