1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-04 11:32:03 +00:00
nixpkgs/pkgs/tools/misc/doitlive/default.nix
R. RyanTM aa7981c3a1 doitlive: 4.0.1 -> 4.1.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/doitlive/versions
2018-11-09 23:43:25 -08:00

24 lines
638 B
Nix

{ stdenv, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "doitlive";
version = "4.1.0";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "0zkvmnv6adz0gyqiql8anpxnh8zzpqk0p2n0pf2kxy55010qs4wz";
};
propagatedBuildInputs = with python3Packages; [ click click-completion click-didyoumean ];
# 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 ];
};
}