Unverified Commit 82aed8e6 authored by R. RyanTM's avatar R. RyanTM Committed by Nick Cao
Browse files

doitlive: 4.3.0 -> 5.0.0

parent 3211e2cf
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -2,13 +2,16 @@

python3Packages.buildPythonApplication rec {
  pname = "doitlive";
  version = "4.3.0";
  version = "5.0.0";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    sha256 = "03qrs032x206xrl0x3z0fpvxgjivzz9rkmb11bqlk1id10707cac";
    hash = "sha256-jAoibszDpQJjiNCZDhX3fLniALOG7r9YqaYEySkmMM4=";
  };

  nativeBuildInputs = with python3Packages; [ setuptools ];

  propagatedBuildInputs = with python3Packages; [ click click-completion click-didyoumean ];

  # disable tests (too many failures)
@@ -16,7 +19,8 @@ python3Packages.buildPythonApplication rec {

  meta = with lib; {
    description = "Tool for live presentations in the terminal";
    homepage = "https://pypi.python.org/pypi/doitlive";
    homepage = "https://github.com/sloria/doitlive";
    changelog = "https://github.com/sloria/doitlive/blob/${version}/CHANGELOG.rst";
    license = licenses.mit;
    maintainers = with maintainers; [ mbode ];
    mainProgram = "doitlive";