2021-01-25 08:26:54 +00:00
|
|
|
{ lib, fetchFromGitHub, python3Packages }:
|
2017-05-01 19:38:35 +00:00
|
|
|
|
2018-01-02 18:06:21 +00:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2021-10-12 15:16:31 +00:00
|
|
|
pname = "toot";
|
2023-02-06 09:23:48 +00:00
|
|
|
version = "0.34.0";
|
2017-05-01 19:38:35 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ihabunek";
|
|
|
|
repo = "toot";
|
2022-11-21 19:38:44 +00:00
|
|
|
rev = "refs/tags/${version}";
|
2023-02-06 09:23:48 +00:00
|
|
|
sha256 = "sha256-UQR3BaBcnD2o7QJEBQmdZdtVaTo9R5vSHiUxywy1OaY=";
|
2017-05-01 19:38:35 +00:00
|
|
|
};
|
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = with python3Packages; [ pytest ];
|
2017-09-06 16:01:27 +00:00
|
|
|
|
2018-01-02 18:06:21 +00:00
|
|
|
propagatedBuildInputs = with python3Packages;
|
2023-01-13 14:20:10 +00:00
|
|
|
[ requests beautifulsoup4 future wcwidth urwid psycopg2 ];
|
2017-05-01 19:38:35 +00:00
|
|
|
|
2017-09-06 16:01:27 +00:00
|
|
|
checkPhase = ''
|
|
|
|
py.test
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-05-01 19:38:35 +00:00
|
|
|
description = "Mastodon CLI interface";
|
|
|
|
homepage = "https://github.com/ihabunek/toot";
|
2020-07-01 00:59:48 +00:00
|
|
|
license = licenses.gpl3;
|
2019-02-20 18:52:48 +00:00
|
|
|
maintainers = [ maintainers.matthiasbeyer ];
|
2017-05-01 19:38:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|