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 {
|
2018-01-16 11:50:25 +01:00
|
|
|
version = "0.17.1";
|
2017-05-01 21:38:35 +02:00
|
|
|
name = "toot-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ihabunek";
|
|
|
|
repo = "toot";
|
|
|
|
rev = "${version}";
|
2018-01-16 11:50:25 +01:00
|
|
|
sha256 = "05fzsakm089bn03z8gip6yp4xfmwa054v40x2f3gqpl04r504gis";
|
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
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|