Merge pull request #34361 from mbode/doitlive_3_0_3
doitlive: init at 3.0.3
This commit is contained in:
commit
6d661f37d8
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -1110,6 +1110,8 @@ with pkgs;
|
|||
|
||||
dlx = callPackage ../misc/emulators/dlx { };
|
||||
|
||||
doitlive = callPackage ../tools/misc/doitlive { };
|
||||
|
||||
dosage = pythonPackages.dosage;
|
||||
|
||||
dpic = callPackage ../tools/graphics/dpic { };
|
||||
|
|
Loading…
Reference in New Issue