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

30 lines
733 B
Nix
Raw Normal View History

2015-11-21 21:14:42 -08:00
{ stdenv, fetchFromGitHub, pkgs, lib, python, pythonPackages }:
2015-04-19 10:01:10 -07:00
pythonPackages.buildPythonApplication rec {
2016-07-28 05:00:37 -07:00
version = "1.10.0";
2015-04-19 10:01:10 -07:00
name = "rtv-${version}";
src = fetchFromGitHub {
owner = "michael-lazar";
repo = "rtv";
rev = "v${version}";
2016-07-28 05:00:37 -07:00
sha256 = "1gm5jyqqssf69lfx0svhzsb9m0dffm6zsf9jqnwh6gjihfz25a45";
2015-04-19 10:01:10 -07:00
};
propagatedBuildInputs = with pythonPackages; [
2015-11-21 21:14:42 -08:00
tornado
requests2
2015-04-19 10:01:10 -07:00
six
praw
2015-06-19 10:10:20 -07:00
kitchen
2016-07-28 05:00:37 -07:00
praw
2015-11-21 21:14:42 -08:00
] ++ lib.optional (!pythonPackages.isPy3k) futures;
2015-04-19 10:01:10 -07:00
2015-11-21 21:14:42 -08:00
meta = with lib; {
2015-04-19 10:01:10 -07:00
homepage = https://github.com/michael-lazar/rtv;
description = "Browse Reddit from your Terminal";
2015-06-21 04:23:38 -07:00
license = licenses.mit;
2016-04-06 09:12:16 -07:00
maintainers = with maintainers; [ matthiasbeyer jgeerds wedens ];
2015-04-19 10:01:10 -07:00
};
}