Commit a396da7a authored by emaryn's avatar emaryn
Browse files

termdown: 1.17.0 -> 1.18.0

parent dce71cf3
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -10,27 +10,27 @@

buildPythonApplication rec {
  pname = "termdown";
  version = "1.17.0";
  version = "1.18.0";

  src = fetchFromGitHub {
    rev = version;
    sha256 = "1sd9z5n2a4ir35832wgxs68vwav7wxhq39b5h8pq934mp8sl3v2k";
    repo = "termdown";
    owner = "trehn";
    repo = "termdown";
    tag = version;
    hash = "sha256-Hnk/MOYdbOl14fI0EFbIq7Hmc7TyhcZWGEg2/jmNJ5Y=";
  };

  propagatedBuildInputs = [
  dependencies = [
    python-dateutil
    click
    pyfiglet
    setuptools
  ];

  meta = with lib; {
  meta = {
    description = "Starts a countdown to or from TIMESPEC";
    mainProgram = "termdown";
    longDescription = "Countdown timer and stopwatch in your terminal";
    homepage = "https://github.com/trehn/termdown";
    license = licenses.gpl3;
    license = lib.licenses.gpl3;
  };
}