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

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