summary refs log tree commit diff
diff options
context:
space:
mode:
authorLancelot SIX <lsix+github@lancelotsix.com>2020-01-21 11:54:28 +0100
committerGitHub <noreply@github.com>2020-01-21 11:54:28 +0100
commit47ccc37838d832e7318d67a1c72ad7d4f623de46 (patch)
tree8a733ab664897f034c56a0c6b5a2bb8feb2e5a72
parente0fa73d6927dc55167eb8339867d80dd6f02260e (diff)
parentd7de1de097329302ea056ef2394072739db5f949 (diff)
downloadnixpkgs-47ccc37838d832e7318d67a1c72ad7d4f623de46.tar
nixpkgs-47ccc37838d832e7318d67a1c72ad7d4f623de46.tar.gz
nixpkgs-47ccc37838d832e7318d67a1c72ad7d4f623de46.tar.bz2
nixpkgs-47ccc37838d832e7318d67a1c72ad7d4f623de46.tar.lz
nixpkgs-47ccc37838d832e7318d67a1c72ad7d4f623de46.tar.xz
nixpkgs-47ccc37838d832e7318d67a1c72ad7d4f623de46.tar.zst
nixpkgs-47ccc37838d832e7318d67a1c72ad7d4f623de46.zip
Merge pull request #78148 from matthiasbeyer/update-toot
toot: 0.24.0 -> 0.25.0
-rw-r--r--pkgs/applications/misc/toot/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/misc/toot/default.nix b/pkgs/applications/misc/toot/default.nix
index 13e0cdfb260..bfae97027c4 100644
--- a/pkgs/applications/misc/toot/default.nix
+++ b/pkgs/applications/misc/toot/default.nix
@@ -1,14 +1,14 @@
 { stdenv, fetchFromGitHub, python3Packages }:
 
 python3Packages.buildPythonApplication rec {
-  version = "0.24.0";
+  version = "0.25.0";
   name    = "toot-${version}";
 
   src = fetchFromGitHub {
     owner  = "ihabunek";
     repo   = "toot";
     rev    = version;
-    sha256 = "1szpmkxc1lqfphicfcj0z7b1nq97xmb4ppwf806p8w0fxj1shil3";
+    sha256 = "0padc5jbr55spgbp4avk2kj3if52vzn8dg4ch5jc3h5fvb9l8xz1";
   };
 
   checkInputs = with python3Packages; [ pytest ];