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

41 lines
899 B
Nix
Raw Normal View History

2015-11-22 05:14:42 +00:00
{ stdenv, fetchFromGitHub, pkgs, lib, python, pythonPackages }:
2015-04-19 17:01:10 +00:00
pythonPackages.buildPythonApplication rec {
2017-04-25 10:41:51 +00:00
version = "1.15.1";
2015-04-19 17:01:10 +00:00
name = "rtv-${version}";
src = fetchFromGitHub {
owner = "michael-lazar";
repo = "rtv";
rev = "v${version}";
2017-04-25 10:41:51 +00:00
sha256 = "037dhds1prxj7vsq15dr46wk3pfk3ixr0d60m3h796b6nbc1spya";
2015-04-19 17:01:10 +00:00
};
propagatedBuildInputs = with pythonPackages; [
2017-01-03 11:38:45 +00:00
beautifulsoup4
mailcap-fix
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
2016-07-28 12:00:37 +00:00
praw
2017-04-25 10:41:51 +00:00
vcrpy
pylint
coverage
pytest
coveralls
contextlib2
backports_functools_lru_cache
pyyaml
docopt
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;
2016-04-06 16:12:16 +00:00
maintainers = with maintainers; [ matthiasbeyer jgeerds wedens ];
2015-04-19 17:01:10 +00:00
};
}