nixpkgs/pkgs/applications/misc/toot/default.nix

32 lines
716 B
Nix
Raw Normal View History

2018-01-02 18:06:21 +00:00
{ stdenv, fetchFromGitHub, python3Packages }:
2017-05-01 19:38:35 +00:00
2018-01-02 18:06:21 +00:00
python3Packages.buildPythonApplication rec {
version = "0.22.0";
2017-05-01 19:38:35 +00:00
name = "toot-${version}";
src = fetchFromGitHub {
owner = "ihabunek";
repo = "toot";
2019-09-08 23:38:31 +00:00
rev = version;
sha256 = "11dgz082shxpbsxr4i41as040cfqinm5lbcg3bmsxqvc4hsz2nr5";
2017-05-01 19:38:35 +00:00
};
2018-01-02 18:06:21 +00:00
checkInputs = with python3Packages; [ pytest ];
2017-09-06 16:01:27 +00:00
2018-01-02 18:06:21 +00:00
propagatedBuildInputs = with python3Packages;
[ requests beautifulsoup4 future wcwidth ];
2017-05-01 19:38:35 +00:00
2017-09-06 16:01:27 +00:00
checkPhase = ''
py.test
'';
2017-05-01 19:38:35 +00:00
meta = with stdenv.lib; {
description = "Mastodon CLI interface";
homepage = "https://github.com/ihabunek/toot";
license = licenses.mit;
maintainers = [ maintainers.matthiasbeyer ];
2017-05-01 19:38:35 +00:00
};
}