aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/misc/toot
diff options
context:
space:
mode:
authorR. RyanTM <ryantm+bot@ryantm.com>2018-06-18 21:32:07 -0700
committerFranz Pletz <fpletz@fnordicwalking.de>2018-06-19 16:29:06 +0000
commit18096d201b6dee117fff095aa8df10d120dc8140 (patch)
tree0242d24432517b40af83cea03d203553a0f86d75 /pkgs/applications/misc/toot
parentac3b07b581b86c674995a732a09608d4db1d732e (diff)
toot: 0.17.1 -> 0.18.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/toot/versions. These checks were done: - built on NixOS - /nix/store/bhs5n438kn33h9v1r27m27zb27z0pvmw-toot-0.18.0/bin/.toot-wrapped passed the binary check. - /nix/store/bhs5n438kn33h9v1r27m27zb27z0pvmw-toot-0.18.0/bin/toot passed the binary check. - 2 of 2 passed binary check by having a zero exit code. - 0 of 2 passed binary check by having the new version present in output. - found 0.18.0 with grep in /nix/store/bhs5n438kn33h9v1r27m27zb27z0pvmw-toot-0.18.0 - directory tree listing: https://gist.github.com/a202deb57487abab3f68139efcdf7e07 - du listing: https://gist.github.com/fffb680bbb26f7e0ff4956e000c89985
Diffstat (limited to 'pkgs/applications/misc/toot')
-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 e282e752b31..0fa0495ceda 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.17.1";
+ version = "0.18.0";
name = "toot-${version}";
src = fetchFromGitHub {
owner = "ihabunek";
repo = "toot";
rev = "${version}";
- sha256 = "05fzsakm089bn03z8gip6yp4xfmwa054v40x2f3gqpl04r504gis";
+ sha256 = "0snvxn7ifbkrdnml66pdna7vny3qa0s6gcjjz69s7scc0razwrh8";
};
checkInputs = with python3Packages; [ pytest ];