2018-01-02 19:06:21 +01:00
|
|
|
{ stdenv, fetchFromGitHub, python3Packages }:
|
2017-05-01 21:38:35 +02:00
|
|
|
|
2018-01-02 19:06:21 +01:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2020-02-06 18:34:47 +01:00
|
|
|
version = "0.25.2";
|
2017-05-01 21:38:35 +02:00
|
|
|
name = "toot-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ihabunek";
|
|
|
|
repo = "toot";
|
2019-09-09 01:38:31 +02:00
|
|
|
rev = version;
|
2020-02-06 18:34:47 +01:00
|
|
|
sha256 = "0g18x8pbwhk2d3aphah6dqqbhz62k48pwx63flsnqd4brccd0jkh";
|
2017-05-01 21:38:35 +02:00
|
|
|
};
|
|
|
|
|
2018-01-02 19:06:21 +01:00
|
|
|
checkInputs = with python3Packages; [ pytest ];
|
2017-09-06 18:01:27 +02:00
|
|
|
|
2018-01-02 19:06:21 +01:00
|
|
|
propagatedBuildInputs = with python3Packages;
|
2019-09-24 18:52:01 +02:00
|
|
|
[ requests beautifulsoup4 future wcwidth urwid ];
|
2017-05-01 21:38:35 +02:00
|
|
|
|
2017-09-06 18:01:27 +02:00
|
|
|
checkPhase = ''
|
|
|
|
py.test
|
|
|
|
'';
|
|
|
|
|
2017-05-01 21:38:35 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Mastodon CLI interface";
|
|
|
|
homepage = "https://github.com/ihabunek/toot";
|
|
|
|
license = licenses.mit;
|
2019-02-20 19:52:48 +01:00
|
|
|
maintainers = [ maintainers.matthiasbeyer ];
|
2017-05-01 21:38:35 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|