mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #34361 from mbode/doitlive_3_0_3
doitlive: init at 3.0.3
This commit is contained in:
commit
6d661f37d8
2 changed files with 25 additions and 0 deletions
23
pkgs/tools/misc/doitlive/default.nix
Normal file
23
pkgs/tools/misc/doitlive/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 a new issue