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

24 lines
630 B
Nix
Raw Normal View History

{ lib, python3Packages }:
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";
version = "4.3.0";
2018-01-28 18:53:44 +00:00
2018-08-03 13:53:52 +00:00
src = python3Packages.fetchPypi {
2018-01-28 18:53:44 +00:00
inherit pname version;
sha256 = "03qrs032x206xrl0x3z0fpvxgjivzz9rkmb11bqlk1id10707cac";
2018-01-28 18:53:44 +00:00
};
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";
homepage = "https://pypi.python.org/pypi/doitlive";
2018-01-28 18:53:44 +00:00
license = licenses.mit;
maintainers = with maintainers; [ mbode ];
};
}