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
726 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, python3Packages }:
2017-05-01 19:38:35 +00:00
2018-01-02 18:06:21 +00:00
python3Packages.buildPythonApplication rec {
pname = "toot";
2023-02-06 09:23:48 +00:00
version = "0.34.0";
2017-05-01 19:38:35 +00:00
src = fetchFromGitHub {
owner = "ihabunek";
repo = "toot";
2022-11-21 19:38:44 +00:00
rev = "refs/tags/${version}";
2023-02-06 09:23:48 +00:00
sha256 = "sha256-UQR3BaBcnD2o7QJEBQmdZdtVaTo9R5vSHiUxywy1OaY=";
2017-05-01 19:38:35 +00:00
};
nativeCheckInputs = 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 psycopg2 ];
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
};
}