summary refs log blame commit diff
path: root/pkgs/tools/networking/pirate-get/default.nix
blob: 9b5846d6f76fbe86b23bc629cbb6206ca7d05af1 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                         



                            
                       
                    


                          
                                                                   

    
                                                                 
 
                    
                                                                
                                                         




                                                
{ lib, python3Packages }:

with python3Packages;

buildPythonApplication rec {
  pname = "pirate-get";
  version = "0.4.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-VtnVyJqrdGXTqcyzpHCOMUI9G7/BkXzihDrBrsxl7Eg=";
  };

  propagatedBuildInputs = [ colorama veryprettytable pyperclip ];

  meta = with lib; {
    description = "A command line interface for The Pirate Bay";
    homepage = "https://github.com/vikstrous/pirate-get";
    license = licenses.gpl1;
    maintainers = with maintainers; [ rnhmjoj ];
    platforms = platforms.unix;
  };
}