summary refs log blame commit diff
path: root/pkgs/applications/misc/haxor-news/default.nix
blob: c82e5026ff18bc28b007ca06dcffcb641770dcd5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                             
 
                 
 






                                                                                

    
                           

            
            
            
                  


       





                                                          
                           
                                                         





                                                      
{ stdenv, fetchurl, python }:

with python.pkgs;

buildPythonApplication rec {
  pname = "haxor-news";
  version = "0.4.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "5b9af8338a0f8b95a8133b66ef106553823813ac171c0aefa3f3f2dbeb4d7f88";
  };

  propagatedBuildInputs = [
    click
    colorama
    requests
    pygments
    prompt_toolkit
    six
  ];

  checkInputs = [ mock ];

  checkPhase = ''
    ${python.interpreter} -m unittest discover -s tests -v
  '';

  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 ];
  };

}