1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-03 19:15:39 +00:00
nixpkgs/pkgs/applications/misc/rtv/default.nix

30 lines
749 B
Nix
Raw Normal View History

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