Merge pull request #34361 from mbode/doitlive_3_0_3

doitlive: init at 3.0.3
This commit is contained in:
Robert Schütz 2018-03-14 20:18:48 +01:00 committed by GitHub
commit 6d661f37d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

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