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

32 lines
687 B
Nix
Raw Normal View History

2018-01-02 18:06:21 +00:00
{ stdenv, fetchFromGitHub, python3Packages }:
2017-05-01 19:38:35 +00:00
2018-01-02 18:06:21 +00:00
python3Packages.buildPythonApplication rec {
version = "0.19.0";
2017-05-01 19:38:35 +00:00
name = "toot-${version}";
src = fetchFromGitHub {
owner = "ihabunek";
repo = "toot";
rev = "${version}";
sha256 = "1z0r6yqi522d5jbpd0w3prd33l067jb1jhfnxf6hkzhnx1wddjsa";
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 ];
2017-05-01 19:38:35 +00:00
2017-09-06 16:01:27 +00:00
checkPhase = ''
py.test
'';
2017-05-01 19:38:35 +00:00
meta = with stdenv.lib; {
description = "Mastodon CLI interface";
homepage = "https://github.com/ihabunek/toot";
license = licenses.mit;
maintainers = [ ];
2017-05-01 19:38:35 +00:00
};
}