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

51 lines
922 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, pkgs, pythonPackages }:
2015-04-19 17:01:10 +00:00
with 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
};
checkPhase = ''
py.test
'';
buildInputs = [
coverage
coveralls
docopt
mock
pylint
pytest
vcrpy
];
propagatedBuildInputs = [
backports_functools_lru_cache
2017-01-03 11:38:45 +00:00
beautifulsoup4
configparser
contextlib2
decorator
kitchen
2017-01-03 11:38:45 +00:00
mailcap-fix
mccabe
requests
2015-04-19 17:01:10 +00:00
six
tornado
2017-04-25 10:41:51 +00:00
pyyaml
];
2015-04-19 17:01:10 +00:00
meta = with stdenv.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
};
}