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

32 lines
721 B
Nix
Raw Normal View History

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