Merge pull request #33929 from matthiasbeyer/update-toot

toot: 0.16.2 -> 0.17.1
This commit is contained in:
Andreas Rammhold 2018-01-16 12:14:12 +00:00 committed by GitHub
commit 1624e32eb0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,14 +1,14 @@
{ stdenv, fetchFromGitHub, python3Packages }:
python3Packages.buildPythonApplication rec {
version = "0.16.2";
version = "0.17.1";
name = "toot-${version}";
src = fetchFromGitHub {
owner = "ihabunek";
repo = "toot";
rev = "${version}";
sha256 = "19n6rmm44y24zvkpk56vd2xmx49sn6wc5qayi1jm83jlnlbbwfh7";
sha256 = "05fzsakm089bn03z8gip6yp4xfmwa054v40x2f3gqpl04r504gis";
};
checkInputs = with python3Packages; [ pytest ];