nixpkgs/pkgs/applications/misc/haxor-news/default.nix

29 lines
683 B
Nix
Raw Normal View History

2016-04-22 10:19:18 +00:00
{ stdenv, fetchurl, pythonPackages }:
pythonPackages.buildPythonApplication rec {
2017-01-03 11:29:43 +00:00
version = "0.4.1";
2016-04-22 10:19:18 +00:00
name = "haxor-news-${version}";
src = fetchurl {
2017-01-03 11:29:43 +00:00
url = "https://github.com/donnemartin/haxor-news/archive/${version}.tar.gz";
sha256 = "0d3an7by33hjl8zg48y7ig6r258ghgbdkpp1psa9jr6n2nk2w9mr";
2016-04-22 10:19:18 +00:00
};
propagatedBuildInputs = with pythonPackages; [
click
colorama
requests2
pygments
prompt_toolkit_52
six
];
meta = with stdenv.lib; {
homepage = "https://github.com/donnemartin/haxor-news";
description = "Browse Hacker News like a haxor";
license = licenses.asl20;
maintainers = with maintainers; [ matthiasbeyer ];
};
}