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

32 lines
722 B
Nix
Raw Normal View History

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