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

37 lines
712 B
Nix
Raw Normal View History

{ stdenv, fetchurl, python }:
2016-04-22 10:19:18 +00:00
with python.pkgs;
2016-04-22 10:19:18 +00:00
buildPythonApplication rec {
pname = "haxor-news";
version = "0.4.3";
src = fetchPypi {
inherit pname version;
sha256 = "5b9af8338a0f8b95a8133b66ef106553823813ac171c0aefa3f3f2dbeb4d7f88";
2016-04-22 10:19:18 +00:00
};
propagatedBuildInputs = [
2016-04-22 10:19:18 +00:00
click
colorama
requests
2016-04-22 10:19:18 +00:00
pygments
2017-04-25 09:38:04 +00:00
prompt_toolkit
2016-04-22 10:19:18 +00:00
six
];
checkInputs = [ mock ];
checkPhase = ''
${python.interpreter} -m unittest discover -s tests -v
'';
2016-04-22 10:19:18 +00:00
meta = with stdenv.lib; {
homepage = https://github.com/donnemartin/haxor-news;
2016-04-22 10:19:18 +00:00
description = "Browse Hacker News like a haxor";
license = licenses.asl20;
maintainers = with maintainers; [ matthiasbeyer ];
};
}