Merge pull request #33338 from matthiasbeyer/update-toot

toot: 0.15.0 -> 0.16.2

authored by Frederik Rietdijk and committed by GitHub 58f9fd64 804285f5

+6 -6
+6 -6
pkgs/applications/misc/toot/default.nix
··· 1 - { stdenv, fetchFromGitHub, pythonPackages }: 1 + { stdenv, fetchFromGitHub, python3Packages }: 2 2 3 - pythonPackages.buildPythonApplication rec { 4 - version = "0.15.0"; 3 + python3Packages.buildPythonApplication rec { 4 + version = "0.16.2"; 5 5 name = "toot-${version}"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "ihabunek"; 9 9 repo = "toot"; 10 10 rev = "${version}"; 11 - sha256 = "08k913gw0ip2q686z9k63bcn1n5s4w6b7jj6jmmamm427xmibkph"; 11 + sha256 = "19n6rmm44y24zvkpk56vd2xmx49sn6wc5qayi1jm83jlnlbbwfh7"; 12 12 }; 13 13 14 - checkInputs = with pythonPackages; [ pytest ]; 14 + checkInputs = with python3Packages; [ pytest ]; 15 15 16 - propagatedBuildInputs = with pythonPackages; 16 + propagatedBuildInputs = with python3Packages; 17 17 [ requests beautifulsoup4 future ]; 18 18 19 19 checkPhase = ''