2021-01-25 08:26:54 +00:00
|
|
|
{ lib, fetchFromGitHub, python3Packages }:
|
2017-05-01 20:38:35 +01:00
|
|
|
|
2018-01-02 18:06:21 +00:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2020-06-30 18:45:19 +01:00
|
|
|
version = "0.27.0";
|
2017-05-01 20:38:35 +01:00
|
|
|
name = "toot-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ihabunek";
|
|
|
|
repo = "toot";
|
2019-09-09 00:38:31 +01:00
|
|
|
rev = version;
|
2020-06-30 18:45:19 +01:00
|
|
|
sha256 = "197g9lvwg8qnsf18kifcqdj3cpfdnxz9vay766rn9bi4nfz0s6j2";
|
2017-05-01 20:38:35 +01:00
|
|
|
};
|
|
|
|
|
2018-01-02 18:06:21 +00:00
|
|
|
checkInputs = with python3Packages; [ pytest ];
|
2017-09-06 17:01:27 +01:00
|
|
|
|
2018-01-02 18:06:21 +00:00
|
|
|
propagatedBuildInputs = with python3Packages;
|
2019-09-24 17:52:01 +01:00
|
|
|
[ requests beautifulsoup4 future wcwidth urwid ];
|
2017-05-01 20:38:35 +01:00
|
|
|
|
2017-09-06 17:01:27 +01:00
|
|
|
checkPhase = ''
|
|
|
|
py.test
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-05-01 20:38:35 +01:00
|
|
|
description = "Mastodon CLI interface";
|
|
|
|
homepage = "https://github.com/ihabunek/toot";
|
2020-07-01 01:59:48 +01:00
|
|
|
license = licenses.gpl3;
|
2019-02-20 18:52:48 +00:00
|
|
|
maintainers = [ maintainers.matthiasbeyer ];
|
2017-05-01 20:38:35 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|