1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 21:50:55 +00:00
nixpkgs/pkgs/tools/misc/doitlive/default.nix

24 lines
604 B
Nix
Raw Normal View History

2018-08-03 14:53:52 +01:00
{ stdenv, python3Packages }:
2018-01-28 18:53:44 +00:00
2018-08-03 14:53:52 +01:00
python3Packages.buildPythonApplication rec {
2018-01-28 18:53:44 +00:00
pname = "doitlive";
version = "3.0.3";
2018-08-03 14:53:52 +01:00
src = python3Packages.fetchPypi {
2018-01-28 18:53:44 +00:00
inherit pname version;
sha256 = "19i16ca835rb3gal1sxyvpyilj9a80n6nikf0smlzmxck38x86fj";
};
2018-08-03 14:53:52 +01:00
propagatedBuildInputs = with python3Packages; [ click ];
2018-01-28 18:53:44 +00: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 ];
};
}