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

32 lines
721 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, python3Packages }:
2017-05-01 19:38:35 +00:00
2018-01-02 18:06:21 +00:00
python3Packages.buildPythonApplication rec {
2020-06-30 17:45:19 +00:00
version = "0.27.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;
2020-06-30 17:45:19 +00:00
sha256 = "197g9lvwg8qnsf18kifcqdj3cpfdnxz9vay766rn9bi4nfz0s6j2";
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 urwid ];
2017-05-01 19:38:35 +00:00
2017-09-06 16:01:27 +00:00
checkPhase = ''
py.test
'';
meta = with lib; {
2017-05-01 19:38:35 +00:00
description = "Mastodon CLI interface";
homepage = "https://github.com/ihabunek/toot";
license = licenses.gpl3;
maintainers = [ maintainers.matthiasbeyer ];
2017-05-01 19:38:35 +00:00
};
}