toot: 0.26.0 -> 0.27.0

This commit is contained in:
R. RyanTM 2020-06-30 17:45:19 +00:00
parent 679136e252
commit ebe01712cc

View file

@ -1,14 +1,14 @@
{ stdenv, fetchFromGitHub, python3Packages }:
python3Packages.buildPythonApplication rec {
version = "0.26.0";
version = "0.27.0";
name = "toot-${version}";
src = fetchFromGitHub {
owner = "ihabunek";
repo = "toot";
rev = version;
sha256 = "146jj83jixahgxwh12bbkfvci2wrz398h5x01kgppdy59m4pa4pl";
sha256 = "197g9lvwg8qnsf18kifcqdj3cpfdnxz9vay766rn9bi4nfz0s6j2";
};
checkInputs = with python3Packages; [ pytest ];