2015-11-22 05:14:42 +00:00
|
|
|
{ stdenv, fetchFromGitHub, pkgs, lib, python, pythonPackages }:
|
2015-04-19 17:01:10 +00:00
|
|
|
|
|
|
|
pythonPackages.buildPythonPackage rec {
|
2015-12-27 08:02:21 +00:00
|
|
|
version = "1.8.0";
|
2015-04-19 17:01:10 +00:00
|
|
|
name = "rtv-${version}";
|
|
|
|
|
2015-06-24 19:45:31 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "michael-lazar";
|
|
|
|
repo = "rtv";
|
|
|
|
rev = "v${version}";
|
2015-12-27 08:02:21 +00:00
|
|
|
sha256 = "0vp9yapm6bm4zdhd1ibbirc23ck7smrbsrask7xkrnz7qysxgsd3";
|
2015-04-19 17:01:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with pythonPackages; [
|
2015-11-22 05:14:42 +00:00
|
|
|
tornado
|
|
|
|
requests2
|
2015-04-19 17:01:10 +00:00
|
|
|
six
|
|
|
|
praw
|
2015-06-19 17:10:20 +00:00
|
|
|
kitchen
|
2015-04-19 17:01:10 +00:00
|
|
|
python.modules.curses
|
2015-11-22 05:14:42 +00:00
|
|
|
] ++ lib.optional (!pythonPackages.isPy3k) futures;
|
2015-04-19 17:01:10 +00:00
|
|
|
|
2015-11-22 05:14:42 +00:00
|
|
|
meta = with lib; {
|
2015-04-19 17:01:10 +00:00
|
|
|
homepage = https://github.com/michael-lazar/rtv;
|
|
|
|
description = "Browse Reddit from your Terminal";
|
2015-06-21 11:23:38 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ matthiasbeyer jgeerds ];
|
2015-04-19 17:01:10 +00:00
|
|
|
};
|
|
|
|
}
|