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 {
|
2019-01-06 19:07:38 +01:00
|
|
|
version = "0.20.0";
|
2017-05-01 21:38:35 +02:00
|
|
|
name = "toot-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ihabunek";
|
|
|
|
repo = "toot";
|
|
|
|
rev = "${version}";
|
2019-01-06 19:07:38 +01:00
|
|
|
sha256 = "0s5i6fjip5kvvyb59yndi2rhgn962lr0g9b0pi5w2aqnv1mwjbfh";
|
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;
|
2017-05-07 12:55:45 +02:00
|
|
|
[ requests beautifulsoup4 future ];
|
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;
|
2018-04-06 10:57:19 +02:00
|
|
|
maintainers = [ ];
|
2017-05-01 21:38:35 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|