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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
700 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, python3Packages }:
2017-05-01 21:38:35 +02:00
2018-01-02 19:06:21 +01:00
python3Packages.buildPythonApplication rec {
pname = "toot";
version = "0.28.0";
2017-05-01 21:38:35 +02:00
src = fetchFromGitHub {
owner = "ihabunek";
repo = "toot";
2019-09-09 01:38:31 +02:00
rev = version;
sha256 = "076r6l89gxjwxjpiklidcs8yajn5c2bnqjvbj4wc559iqdqj88lz";
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;
[ requests beautifulsoup4 future wcwidth urwid ];
2017-05-01 21:38:35 +02:00
2017-09-06 18:01:27 +02:00
checkPhase = ''
py.test
'';
meta = with lib; {
2017-05-01 21:38:35 +02:00
description = "Mastodon CLI interface";
homepage = "https://github.com/ihabunek/toot";
license = licenses.gpl3;
maintainers = [ maintainers.matthiasbeyer ];
2017-05-01 21:38:35 +02:00
};
}