2018-01-02 18:06:21 +00:00
|
|
|
{ stdenv, fetchFromGitHub, python3Packages }:
|
2017-05-01 20:38:35 +01:00
|
|
|
|
2018-01-02 18:06:21 +00:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2018-07-29 20:00:58 +01:00
|
|
|
version = "0.19.0";
|
2017-05-01 20:38:35 +01:00
|
|
|
name = "toot-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ihabunek";
|
|
|
|
repo = "toot";
|
|
|
|
rev = "${version}";
|
2018-07-29 20:00:58 +01:00
|
|
|
sha256 = "1z0r6yqi522d5jbpd0w3prd33l067jb1jhfnxf6hkzhnx1wddjsa";
|
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;
|
2017-05-07 11:55:45 +01:00
|
|
|
[ requests beautifulsoup4 future ];
|
2017-05-01 20:38:35 +01:00
|
|
|
|
2017-09-06 17:01:27 +01:00
|
|
|
checkPhase = ''
|
|
|
|
py.test
|
|
|
|
'';
|
|
|
|
|
2017-05-01 20:38:35 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Mastodon CLI interface";
|
|
|
|
homepage = "https://github.com/ihabunek/toot";
|
|
|
|
license = licenses.mit;
|
2018-04-06 09:57:19 +01:00
|
|
|
maintainers = [ ];
|
2017-05-01 20:38:35 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|