doitlive: init at 3.0.3

This commit is contained in:
Maximilian Bode 2018-01-28 19:53:44 +01:00
parent 43be4ebfb1
commit 2217c706d4
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, pythonPackages }:
pythonPackages.buildPythonApplication rec {
pname = "doitlive";
version = "3.0.3";
src = pythonPackages.fetchPypi {
inherit pname version;
sha256 = "19i16ca835rb3gal1sxyvpyilj9a80n6nikf0smlzmxck38x86fj";
};
propagatedBuildInputs = with pythonPackages; [ click ];
# 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 ];
};
}

View file

@ -1114,6 +1114,8 @@ with pkgs;
dlx = callPackage ../misc/emulators/dlx { };
doitlive = callPackage ../tools/misc/doitlive { };
dosage = pythonPackages.dosage;
dpic = callPackage ../tools/graphics/dpic { };