summary refs log tree commit diff
path: root/pkgs/applications/misc/termdown
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2020-05-10 19:49:47 +0000
committerMario Rodas <marsam@users.noreply.github.com>2020-05-10 19:49:47 +0000
commit5ce6802a170801a62784831fbbe790475de9a0ff (patch)
tree8e798e67a72f671afd02d7a7e458c4aae2694a72 /pkgs/applications/misc/termdown
parent3ecb13877046c0dbf6b8a81b3d14fae4332edb39 (diff)
downloadnixpkgs-5ce6802a170801a62784831fbbe790475de9a0ff.tar
nixpkgs-5ce6802a170801a62784831fbbe790475de9a0ff.tar.gz
nixpkgs-5ce6802a170801a62784831fbbe790475de9a0ff.tar.bz2
nixpkgs-5ce6802a170801a62784831fbbe790475de9a0ff.tar.lz
nixpkgs-5ce6802a170801a62784831fbbe790475de9a0ff.tar.xz
nixpkgs-5ce6802a170801a62784831fbbe790475de9a0ff.tar.zst
nixpkgs-5ce6802a170801a62784831fbbe790475de9a0ff.zip
termdown: 1.16.0 -> 1.17.0
Diffstat (limited to 'pkgs/applications/misc/termdown')
-rw-r--r--pkgs/applications/misc/termdown/default.nix32
1 files changed, 17 insertions, 15 deletions
diff --git a/pkgs/applications/misc/termdown/default.nix b/pkgs/applications/misc/termdown/default.nix
index 5ccdbbbb6b4..ad6f9e9382b 100644
--- a/pkgs/applications/misc/termdown/default.nix
+++ b/pkgs/applications/misc/termdown/default.nix
@@ -1,27 +1,29 @@
-{ stdenv, fetchFromGitHub, buildPythonApplication,
-click, pyfiglet, dateutil}:
-
-with stdenv.lib;
+{ stdenv
+, fetchFromGitHub
+, buildPythonApplication
+, click
+, pyfiglet
+, dateutil
+, setuptools
+}:
 
 buildPythonApplication rec {
-
   pname = "termdown";
-  version = "1.16.0";
+  version = "1.17.0";
 
   src = fetchFromGitHub {
-    rev    = version;
-    sha256 = "0k429ss1xifm9vbgyzpp71r79byn9jclvr0rm77bai2r8nz3s2vf";
-    repo   = "termdown";
-    owner  = "trehn";
+    rev = version;
+    sha256 = "1sd9z5n2a4ir35832wgxs68vwav7wxhq39b5h8pq934mp8sl3v2k";
+    repo = "termdown";
+    owner = "trehn";
   };
 
-  propagatedBuildInputs = [ dateutil click pyfiglet ];
+  propagatedBuildInputs = [ dateutil click pyfiglet setuptools ];
 
   meta = with stdenv.lib; {
-    description     = "Starts a countdown to or from TIMESPEC";
+    description = "Starts a countdown to or from TIMESPEC";
     longDescription = "Countdown timer and stopwatch in your terminal";
-    homepage        = "https://github.com/trehn/termdown";
-    license         = licenses.gpl3;
-    platforms       = platforms.all;
+    homepage = "https://github.com/trehn/termdown";
+    license = licenses.gpl3;
   };
 }